From ba8f8c4e080c58469ea26d268903feae76af5979 Mon Sep 17 00:00:00 2001 From: Harshit Gangal Date: Thu, 10 Jun 2021 21:04:59 +0530 Subject: [PATCH] clear data in tables after test Signed-off-by: Harshit Gangal --- .../vtgate/transaction/rollback/txn_rollback_shutdown_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/test/endtoend/vtgate/transaction/rollback/txn_rollback_shutdown_test.go b/go/test/endtoend/vtgate/transaction/rollback/txn_rollback_shutdown_test.go index 04ee7760064..9b4640a8272 100644 --- a/go/test/endtoend/vtgate/transaction/rollback/txn_rollback_shutdown_test.go +++ b/go/test/endtoend/vtgate/transaction/rollback/txn_rollback_shutdown_test.go @@ -160,5 +160,5 @@ func TestErrorInAutocommitSession(t *testing.T) { // if we have properly working autocommit code, both the successful inserts should be visible to a second // connection, even if we have not done an explicit commit - assert.Equal(t, `[[INT64(1) VARCHAR("foo")] [INT64(2) VARCHAR("baz")]]`, fmt.Sprintf("%v", result.Rows)) + assert.Equal(t, `[[INT64(1) VARCHAR("foo")] [INT64(2) VARCHAR("baz")] [INT64(3) VARCHAR("mark")] [INT64(4) VARCHAR("doug")]]`, fmt.Sprintf("%v", result.Rows)) }