diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/cmd_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/cmd_spec.lua b/spec/cmd_spec.lua index 21b25fe5..705b8845 100644 --- a/spec/cmd_spec.lua +++ b/spec/cmd_spec.lua | |||
@@ -51,7 +51,7 @@ describe("LuaRocks command line #integration", function() | |||
51 | describe("--lua-version", function() | 51 | describe("--lua-version", function() |
52 | it("warns but continues if given an invalid version", function() | 52 | it("warns but continues if given an invalid version", function() |
53 | local output = run.luarocks("--lua-version=1.0") | 53 | local output = run.luarocks("--lua-version=1.0") |
54 | assert.match("Warning: Could not find a Lua 1.0 interpreter", output, 1, true) | 54 | assert.match("Warning: Lua 1.0 interpreter not found", output, 1, true) |
55 | assert.match("Lua version: 1.0", output, 1, true) | 55 | assert.match("Lua version: 1.0", output, 1, true) |
56 | end) | 56 | end) |
57 | 57 | ||