diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-01-05 17:51:18 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-01-05 18:04:48 +0100 |
| commit | 12d85ec02f66ab27abaa9ffaa27ef50196565f33 (patch) | |
| tree | 7a371c7c7e6810269e9d5242a364485062a36420 | |
| parent | 5ffd0a395f7ef61b75b6ef4b625e78da7900e249 (diff) | |
Client Test: Fix config print
| -rw-r--r-- | client/client_test.go | 2 |
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) } } |
