Skip to content

Commit

Permalink
test: fix confusing tuple value
Browse files Browse the repository at this point in the history
`null` is a common variable in Lua. Since the variable is not declared
and strict mode is off, it is essentially `nil`.
  • Loading branch information
DifferentialOrange committed Aug 8, 2023
1 parent 42bbe14 commit 66e53bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/suites/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def setUpClass(cls):
if_not_exists = true,
})
box.space.tester:insert({1, null})
box.space.tester:insert({1, nil})
return true
""")
Expand Down

0 comments on commit 66e53bc

Please sign in to comment.