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) } }