Skip to content

Commit 8516ecd

Browse files
committed
use go test
1 parent bd898b4 commit 8516ecd

File tree

2 files changed

+5
-18
lines changed

2 files changed

+5
-18
lines changed

testing/bats/regression.bats

Lines changed: 0 additions & 17 deletions
This file was deleted.

testing/go/dolt_tables_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,22 @@ func TestUserSpaceDoltTables(t *testing.T) {
2727
Assertions: []ScriptTestAssertion{
2828
{
2929
Query: `SELECT name FROM dolt.branches`,
30+
Cols: []string{"name"},
3031
Expected: []sql.Row{{"main"}},
3132
},
3233
{
3334
Query: `SELECT name FROM dolt_branches`,
35+
Cols: []string{"name"},
3436
Expected: []sql.Row{{"main"}},
3537
},
3638
{
3739
Query: `SELECT branches.name FROM dolt.branches`,
40+
Cols: []string{"name"},
3841
Expected: []sql.Row{{"main"}},
3942
},
4043
{
4144
Query: `SELECT dolt.branches.name FROM dolt.branches`,
45+
Cols: []string{"name"},
4246
Expected: []sql.Row{{"main"}},
4347
},
4448
{
@@ -2065,7 +2069,7 @@ func TestUserSpaceDoltTables(t *testing.T) {
20652069
},
20662070
},
20672071
{
2068-
Name: "dolt procedures",
2072+
Name: "dolt procedures",
20692073
SetUpScript: []string{
20702074
// TODO: Create procedure when supported
20712075
},

0 commit comments

Comments
 (0)