From 6e55c30cf5055ef5855d5de0e6a4c8f94c3fd4dd Mon Sep 17 00:00:00 2001 From: Sergey Bronnikov <sergeyb@tarantool.org> Date: Fri, 29 May 2020 19:31:27 +0000 Subject: [PATCH] test: fix luacheck warnings in test/xlog Closes #5468 Reviewed-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> Reviewed-by: Igor Munkin <imun@tarantool.org> Co-authored-by: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> Co-authored-by: Igor Munkin <imun@tarantool.org> --- .luacheckrc | 2 +- test/xlog/panic.lua | 2 +- .../upgrade/2.1.3/gh-4771-upgrade-sequence/fill.lua | 12 ++++++------ test/xlog/xlog.lua | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 4b829f3dc4..5468ade25d 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -46,7 +46,7 @@ exclude_files = { "test/var/**/*.lua", "test/vinyl/**/*.lua", "test/wal_off/**/*.lua", - "test/xlog/**/*.lua", + "test/xlog/*.test.lua", "test/xlog-py/**/*.lua", "third_party/**/*.lua", ".rocks/**/*.lua", diff --git a/test/xlog/panic.lua b/test/xlog/panic.lua index 2d4eb8d2e3..0fa855421a 100644 --- a/test/xlog/panic.lua +++ b/test/xlog/panic.lua @@ -1,5 +1,5 @@ #!/usr/bin/env tarantool -os = require('os') +local os = require('os') box.cfg{ listen = os.getenv("LISTEN"), diff --git a/test/xlog/upgrade/2.1.3/gh-4771-upgrade-sequence/fill.lua b/test/xlog/upgrade/2.1.3/gh-4771-upgrade-sequence/fill.lua index b159f2b670..8e9a9d13d3 100644 --- a/test/xlog/upgrade/2.1.3/gh-4771-upgrade-sequence/fill.lua +++ b/test/xlog/upgrade/2.1.3/gh-4771-upgrade-sequence/fill.lua @@ -1,14 +1,14 @@ box.cfg{} -s1 = box.schema.create_space('test1') -pk = s1:create_index('pk', {sequence = true}) +local s1 = box.schema.create_space('test1') +s1:create_index('pk', {sequence = true}) s1:replace{box.NULL} -seq2 = box.schema.sequence.create('seq2') -s2 = box.schema.create_space('test2') -pk = s2:create_index('pk', {sequence = 'seq2'}) +box.schema.sequence.create('seq2') +local s2 = box.schema.create_space('test2') +s2:create_index('pk', {sequence = 'seq2'}) s2:replace{box.NULL} -seq3 = box.schema.sequence.create('seq3') +local seq3 = box.schema.sequence.create('seq3') seq3:next() box.snapshot() diff --git a/test/xlog/xlog.lua b/test/xlog/xlog.lua index 004096d2db..aaf1a0ae61 100644 --- a/test/xlog/xlog.lua +++ b/test/xlog/xlog.lua @@ -1,5 +1,5 @@ #!/usr/bin/env tarantool -os = require('os') +local os = require('os') box.cfg{ listen = os.getenv("LISTEN"), -- GitLab