From f0747e76dade818e4150f13a06f214766e0afdb7 Mon Sep 17 00:00:00 2001 From: Pierre Fersing Date: Mon, 29 Feb 2016 19:04:56 +0100 Subject: [PATCH] Fix newly added test --- plugins/inputs/mysql/mysql_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/inputs/mysql/mysql_test.go b/plugins/inputs/mysql/mysql_test.go index dffc328fa..0b25fe2be 100644 --- a/plugins/inputs/mysql/mysql_test.go +++ b/plugins/inputs/mysql/mysql_test.go @@ -113,7 +113,7 @@ func TestMysqlDNSAddTimeout(t *testing.T) { } for _, test := range tests { - output, _ := parseDSN(test.input) + output, _ := dsnAddTimeout(test.input) if output != test.output { t.Errorf("Expected %s, got %s\n", test.output, output) }