Skip to content

Commit

Permalink
fix go test
Browse files Browse the repository at this point in the history
Signed-off-by: Marius Sincovici <[email protected]>
  • Loading branch information
mariusSincovici committed Dec 12, 2024
1 parent ad44a38 commit 709a06d
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions daemon/rpc_servers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,6 @@ func TestServers(t *testing.T) {
server3City,
false,
core.Groups{
{
ID: config.ServerGroup_OBFUSCATED,
Title: "Standard VPN",
},
{
ID: config.ServerGroup_STANDARD_VPN_SERVERS,
Title: "Standard VPN",
Expand All @@ -231,7 +227,6 @@ func TestServers(t *testing.T) {
[]core.ServerTechnology{
core.L2TP,
core.HTTPProxy,
core.OpenVPNTCPObfuscated,
core.OpenVPNTCP,
core.WireguardTech,
}),
Expand Down Expand Up @@ -325,9 +320,8 @@ func TestServers(t *testing.T) {
Id: int64(server3ID),
HostName: server3Hostname,
Virtual: false,
ServerGroups: []config.ServerGroup{config.ServerGroup_OBFUSCATED, config.ServerGroup_STANDARD_VPN_SERVERS},
ServerGroups: []config.ServerGroup{config.ServerGroup_STANDARD_VPN_SERVERS},
Technologies: []pb.Technology{
pb.Technology_OBFUSCATED_OPENVPN_TCP,
pb.Technology_OPENVPN_TCP,
pb.Technology_NORDLYNX,
},
Expand Down Expand Up @@ -385,9 +379,8 @@ func TestServers(t *testing.T) {
Id: int64(server3ID),
HostName: server3Hostname,
Virtual: false,
ServerGroups: []config.ServerGroup{config.ServerGroup_OBFUSCATED, config.ServerGroup_STANDARD_VPN_SERVERS},
ServerGroups: []config.ServerGroup{config.ServerGroup_STANDARD_VPN_SERVERS},
Technologies: []pb.Technology{
pb.Technology_OBFUSCATED_OPENVPN_TCP,
pb.Technology_OPENVPN_TCP,
pb.Technology_NORDLYNX,
},
Expand Down

0 comments on commit 709a06d

Please sign in to comment.