Skip to content

Commit 66e53bc

Browse files
test: fix confusing tuple value
`null` is a common variable in Lua. Since the variable is not declared and strict mode is off, it is essentially `nil`.
1 parent 42bbe14 commit 66e53bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/suites/test_schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def setUpClass(cls):
7979
if_not_exists = true,
8080
})
8181
82-
box.space.tester:insert({1, null})
82+
box.space.tester:insert({1, nil})
8383
8484
return true
8585
""")

0 commit comments

Comments
 (0)