@@ -88,7 +88,7 @@ func TestScriptWithEngine(t *testing.T, e QueryEngine, harness Harness, script q
8888 t .Skip ()
8989 }
9090
91- if ! supportedDialect (harness , script .Dialect ) {
91+ if ! supportedDialect (harness , script .Dialect ) {
9292 t .Skip ()
9393 }
9494 }
@@ -99,7 +99,7 @@ func TestScriptWithEngine(t *testing.T, e QueryEngine, harness Harness, script q
9999 t .Skip ()
100100 }
101101 }
102-
102+
103103 ctx = ctx .WithQuery (statement )
104104 RunQueryWithContext (t , e , harness , ctx , statement )
105105 }
@@ -172,7 +172,7 @@ func skipAssertion(t *testing.T, harness Harness, assertion queries.ScriptTestAs
172172 if assertion .Skip {
173173 return true
174174 }
175-
175+
176176 return false
177177}
178178
@@ -1131,11 +1131,11 @@ func RunWriteQueryTestWithEngine(t *testing.T, harness Harness, e QueryEngine, t
11311131 t .Skip ()
11321132 }
11331133 }
1134-
1135- if ! supportedDialect (harness , tt .Dialect ) {
1134+
1135+ if ! supportedDialect (harness , tt .Dialect ) {
11361136 t .Skip ()
11371137 }
1138-
1138+
11391139 ctx := NewContext (harness )
11401140 TestQueryWithContext (t , ctx , e , harness , tt .WriteQuery , tt .ExpectedWriteResult , nil , nil , nil )
11411141 expectedSelect := tt .ExpectedSelect
@@ -1149,7 +1149,7 @@ func supportedDialect(harness Harness, dialect string) bool {
11491149 if dialect == "" {
11501150 return true
11511151 }
1152-
1152+
11531153 harnessDialect := "mysql"
11541154 if hd , ok := harness .(DialectHarness ); ok {
11551155 harnessDialect = hd .Dialect ()
0 commit comments