summaryrefslogtreecommitdiff
path: root/client/client_test.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-01-05 17:51:18 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2023-01-05 18:04:48 +0100
commit12d85ec02f66ab27abaa9ffaa27ef50196565f33 (patch)
tree7a371c7c7e6810269e9d5242a364485062a36420 /client/client_test.go
parent5ffd0a395f7ef61b75b6ef4b625e78da7900e249 (diff)
Client Test: Fix config print
Diffstat (limited to 'client/client_test.go')
-rw-r--r--client/client_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client_test.go b/client/client_test.go
index 3c57af5..ad16f6f 100644
--- a/client/client_test.go
+++ b/client/client_test.go
@@ -397,6 +397,6 @@ func TestPreferTCP(t *testing.T) {
if config.Type == "openvpn" &&
!strings.HasSuffix(config.Config, "remote eduvpnserver 1194 udp\nremote eduvpnserver 1194 tcp") {
- t.Fatalf("Suffix for disable prefer TCP is not in the right order for config: %s", config)
+ t.Fatalf("Suffix for disable prefer TCP is not in the right order for config: %s", config.Config)
}
}