Skip to content

Commit 18957ec

Browse files
fix ut
1 parent a388359 commit 18957ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

executor/set_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ func (s *testSuite2) TestSetVar(c *C) {
313313
tk.MustExec("SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE")
314314
tk.MustQuery("show warnings").Check(testkit.Rows(
315315
"Warning 1105 variable 'tx_isolation' does not yet support value: SERIALIZABLE",
316-
"Warning 1105 variable 'transaction_isolation' does not yet support value: SERIALIZABLE"))
316+
"Warning 1105 variable 'transaction_isolation' does not yet support value: SERIALIZABLE"))
317317
tk.MustQuery("select @@session.tx_isolation").Check(testkit.Rows("SERIALIZABLE"))
318318
tk.MustQuery("select @@session.transaction_isolation").Check(testkit.Rows("SERIALIZABLE"))
319319

@@ -323,7 +323,7 @@ func (s *testSuite2) TestSetVar(c *C) {
323323
tk.MustExec("SET GLOBAL TRANSACTION ISOLATION LEVEL READ UNCOMMITTED")
324324
tk.MustQuery("show warnings").Check(testkit.Rows(
325325
"Warning 1105 variable 'tx_isolation' does not yet support value: READ-UNCOMMITTED",
326-
"Warning 1105 variable 'transaction_isolation' does not yet support value: READ-UNCOMMITTED"))
326+
"Warning 1105 variable 'transaction_isolation' does not yet support value: READ-UNCOMMITTED"))
327327
tk.MustQuery("select @@global.tx_isolation").Check(testkit.Rows("READ-UNCOMMITTED"))
328328
tk.MustQuery("select @@global.transaction_isolation").Check(testkit.Rows("READ-UNCOMMITTED"))
329329

0 commit comments

Comments
 (0)