Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Dec 4, 2024
1 parent 8e9a916 commit 44e8f95
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions enginetest/memory_engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,20 +197,12 @@ func TestSingleQueryPrepared(t *testing.T) {

// Convenience test for debugging a single query. Unskip and set to the desired query.
func TestSingleScript(t *testing.T) {
//t.Skip()
t.Skip()
var scripts = []queries.ScriptTest{
{
Name: "test script",
SetUpScript: []string{
"create table t (i tinytext unique);",
"insert into t values ('hello');",
},
Assertions: []queries.ScriptTestAssertion{
{
Query: "insert into t values ('hello');",
ExpectedErrStr: "asdf",
},
},
Name: "test script",
SetUpScript: []string{},
Assertions: []queries.ScriptTestAssertion{},
},
}

Expand Down

0 comments on commit 44e8f95

Please sign in to comment.