Skip to content

Commit 6a1e0aa

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent c61589e commit 6a1e0aa

File tree

5 files changed

+135
-135
lines changed

5 files changed

+135
-135
lines changed

enginetest/evaluation.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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()

enginetest/harness.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ type ResultEvaluationHarness interface {
174174

175175
type DialectHarness interface {
176176
Harness
177-
178-
// Dialect returns the dialect that the engine being tested supports. If this harness interface isn't implemented,
177+
178+
// Dialect returns the dialect that the engine being tested supports. If this harness interface isn't implemented,
179179
// the dialect "mysql" is used by engine tests.
180180
Dialect() string
181-
}
181+
}

0 commit comments

Comments
 (0)