From e062dfc20223e6e030d86a45c9c97c366c2a921f Mon Sep 17 00:00:00 2001 From: Nikita Koryabkin Date: Tue, 3 Dec 2019 07:45:23 +0300 Subject: [PATCH] fix import for test --- expectations_before_go18_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/expectations_before_go18_test.go b/expectations_before_go18_test.go index 028f11f..deee8f9 100644 --- a/expectations_before_go18_test.go +++ b/expectations_before_go18_test.go @@ -2,6 +2,12 @@ package sqlmock +import ( + "database/sql/driver" + "testing" + "time" +) + func TestQueryExpectationArgComparison(t *testing.T) { e := &queryBasedExpectation{converter: driver.DefaultParameterConverter} against := []namedValue{{Value: int64(5), Ordinal: 1}}