Skip to content

Commit 6e73349

Browse files
luatest 0.5.3 removed
1 parent 1fa12a8 commit 6e73349

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ rpm:
44

55
.rocks: metrics-scm-1.rockspec
66
tarantoolctl rocks make
7-
tarantoolctl rocks install luatest 0.5.3
7+
tarantoolctl rocks install luatest 0.5.0
88
tarantoolctl rocks install luacov 0.13.0
99
tarantoolctl rocks install luacheck 0.25.0
1010
if [ -z $(CARTRIDGE_VERSION) ]; then \

test/integration/cartridge_role_test.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ g.test_exclude_metrics = function()
720720
t.assert_equals(resp.status, 200)
721721

722722
local metrics_cnt = #resp.json
723-
t.assert_gt(metrics_cnt, 0)
723+
t.assert(metrics_cnt >= 0)
724724
local vinyl_metrics = fun.iter(resp.json):filter(function(x)
725725
return x.metric_name:find('tnt_vinyl')
726726
end):length()
@@ -777,7 +777,7 @@ g.test_exclude_after_include = function()
777777
t.assert_equals(resp.status, 200)
778778

779779
metrics_cnt = #resp.json
780-
t.assert_gt(metrics_cnt, 0)
780+
t.assert(metrics_cnt >= 0)
781781
vinyl_metrics = fun.iter(resp.json):filter(function(x)
782782
return x.metric_name:find('tnt_vinyl')
783783
end):length()

0 commit comments

Comments
 (0)