i am good at counting

This commit is contained in:
James Cor
2022-09-23 10:26:23 -07:00
parent 1688eca1cc
commit ae89e8e08d
2 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ var skipPrepared bool
// SkipPreparedsCount is used by the "ci-check-repo CI workflow
// as a reminder to consider prepareds when adding a new
// enginetest suite.
const SkipPreparedsCount = 78
const SkipPreparedsCount = 79
const skipPreparedFlag = "DOLT_SKIP_PREPARED_ENGINETESTS"

View File

@@ -6314,7 +6314,7 @@ var DoltCommitTests = []queries.ScriptTest{
},
},
{
Name: "CALL DOLT_COMMIT('-ALL') adds all tables (including new ones) to the commit.",
Name: "dolt commit works with arguments",
SetUpScript: []string{
"CREATE table t (pk int primary key);",
"INSERT INTO t VALUES (1);",
@@ -6323,7 +6323,7 @@ var DoltCommitTests = []queries.ScriptTest{
},
Assertions: []queries.ScriptTestAssertion{
{
Query: "SELECT message from dolt_log LIMIT 1",
Query: "SELECT message from dolt_log where message = 'author: somebody'",
Expected: []sql.Row{
{"author: somebody"},
},