Skip to content

Commit

Permalink
fix: update expectation
Browse files Browse the repository at this point in the history
Signed-off-by: Harshit Gangal <[email protected]>
  • Loading branch information
harshit-gangal committed Nov 15, 2024
1 parent e0d5217 commit 05b80b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go/test/endtoend/vtgate/misc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -863,10 +863,10 @@ func TestShow(t *testing.T) {

qr := utils.Exec(t, conn, "show tables")
assert.Equal(t, 1, len(qr.Fields))
assert.Equal(t, 21, len(qr.Rows))
assert.Equal(t, 22, len(qr.Rows))

utils.Exec(t, conn, "begin")
qr = utils.Exec(t, conn, "show tables")
assert.Equal(t, 1, len(qr.Fields))
assert.Equal(t, 21, len(qr.Rows))
assert.Equal(t, 22, len(qr.Rows))
}

0 comments on commit 05b80b8

Please sign in to comment.