Skip to content

Commit

Permalink
Fix vinyl test
Browse files Browse the repository at this point in the history
  • Loading branch information
yngvar-antonsson committed Apr 27, 2024
1 parent d54dbe7 commit 4d4a15e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/tarantool/vinyl_test.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ g.test_vinyl_metrics_present = function(cg)
if utils.is_version_less(_TARANTOOL, '2.8.3')
and utils.is_version_greater(_TARANTOOL, '2.0.0') then
t.assert_equals(metrics_cnt, 19)
else
elseif utils.is_version_less(_TARANTOOL, '3.0.0') then
t.assert_equals(metrics_cnt, 20)
else
t.assert_equals(metrics_cnt, 21)
end
end)
end

0 comments on commit 4d4a15e

Please sign in to comment.