From e46a7c39c3086c42afce5c7168b217bed9a1f00d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 22 Mar 2023 13:28:40 +0530 Subject: [PATCH] Fix failing test --- tools/cmd/ssh/main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cmd/ssh/main_test.go b/tools/cmd/ssh/main_test.go index 880e2f78f..7656eeea9 100644 --- a/tools/cmd/ssh/main_test.go +++ b/tools/cmd/ssh/main_test.go @@ -51,7 +51,7 @@ func basic_connection_data(overrides ...string) *connection_data { username: "testuser", hostname_for_match: "host.test", dont_create_shm: true, } - opts, bad_lines, err := load_config(ans.hostname_for_match, ans.username, overrides, "") + opts, bad_lines, err := load_config(ans.hostname_for_match, ans.username, overrides) if err != nil { panic(err) }