diff options
author | Paul Ouellette <oue.paul18@gmail.com> | 2019-07-30 16:08:48 -0400 |
---|---|---|
committer | Paul Ouellette <oue.paul18@gmail.com> | 2019-08-01 23:53:03 -0400 |
commit | f52deeed485897511ecf80555e12a52c3e69d674 (patch) | |
tree | 206d36380317df2f0b751b06ddac77af0c5ad2ca /spec | |
parent | b4d7742508105244053ebea15cac5cc570e4337f (diff) | |
download | luarocks-f52deeed485897511ecf80555e12a52c3e69d674.tar.gz luarocks-f52deeed485897511ecf80555e12a52c3e69d674.tar.bz2 luarocks-f52deeed485897511ecf80555e12a52c3e69d674.zip |
Fix some failing tests
Diffstat (limited to 'spec')
-rw-r--r-- | spec/which_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/which_spec.lua b/spec/which_spec.lua index d5bcfab9..79b9ef7e 100644 --- a/spec/which_spec.lua +++ b/spec/which_spec.lua | |||
@@ -22,7 +22,7 @@ describe("LuaRocks which tests #integration", function() | |||
22 | 22 | ||
23 | it("fails on missing arguments", function() | 23 | it("fails on missing arguments", function() |
24 | local output = run.luarocks("which") | 24 | local output = run.luarocks("which") |
25 | assert.match("Missing module name", output, 1, true) | 25 | assert.match("missing argument 'modname'", output, 1, true) |
26 | end) | 26 | end) |
27 | 27 | ||
28 | it("finds modules found in package.path", function() | 28 | it("finds modules found in package.path", function() |