From 248de26b949b589a97b3ff9a19b68575b4f75023 Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Tue, 13 Mar 2018 12:46:08 +0300 Subject: [PATCH] Fix a test installing Lua from git Bleeding edge Lua is now 5.4 and not supported by LuaRocks, use latest 5.3 commit instead. --- test/cli_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cli_test.py b/test/cli_test.py index 5b22952..60735bc 100644 --- a/test/cli_test.py +++ b/test/cli_test.py @@ -67,7 +67,7 @@ class TestCLI(unittest.TestCase): self.assertHererocksSuccess(["--lua", "latest", "--luarocks", "https://github.com/mpeterv/luarocks@master"]) def test_install_lua_from_git_with_latest_luarocks(self): - self.assertHererocksSuccess(["--lua", "@", "--luarocks", "latest"]) + self.assertHererocksSuccess(["--lua", "@b1daa06", "--luarocks", "latest"]) self.assertHererocksSuccess(["--show"], ["Programs installed in", "cloned from https://github.com/lua/lua"]) self.assertSuccess(["luarocks", "--version"])