From 1c13825d0819dc5bde55dde96ff0e8c266ebc439 Mon Sep 17 00:00:00 2001 From: Harpreet Sawhney Date: Wed, 16 Apr 2014 08:19:07 +1000 Subject: [PATCH] fixed test to use un exported shouldPrepare --- cass1batch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cass1batch_test.go b/cass1batch_test.go index ecf8b2edd..52b4b940d 100644 --- a/cass1batch_test.go +++ b/cass1batch_test.go @@ -50,7 +50,7 @@ func TestShouldPrepareFunction(t *testing.T) { for _, test := range shouldPrepareTests { q := &Query{stmt: test.Stmt} - if got := q.ShouldPrepare(); got != test.Result { + if got := q.shouldPrepare(); got != test.Result { t.Fatalf("%q: got %v, expected %v\n", test.Stmt, got, test.Result) } }