From 66e53bca472fec0efacd690ebe6c54c33a7df3f9 Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Tue, 8 Aug 2023 11:14:47 +0300 Subject: [PATCH] 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`. --- test/suites/test_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suites/test_schema.py b/test/suites/test_schema.py index 6175c958..c90ddbff 100644 --- a/test/suites/test_schema.py +++ b/test/suites/test_schema.py @@ -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 """)