aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/install_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/install_spec.lua b/spec/install_spec.lua
index 9b082ab8..bf50ced7 100644
--- a/spec/install_spec.lua
+++ b/spec/install_spec.lua
@@ -184,7 +184,7 @@ describe("luarocks install #integration", function()
184 it("only-deps of luasocket packed rock", function() 184 it("only-deps of luasocket packed rock", function()
185 assert.is_true(run.luarocks_bool("build --pack-binary-rock luasocket 3.0rc1-2")) 185 assert.is_true(run.luarocks_bool("build --pack-binary-rock luasocket 3.0rc1-2"))
186 local output = run.luarocks("install --only-deps " .. "luasocket-3.0rc1-2." .. test_env.platform .. ".rock") 186 local output = run.luarocks("install --only-deps " .. "luasocket-3.0rc1-2." .. test_env.platform .. ".rock")
187 assert.are.same("Successfully installed dependencies for luasocket 3.0rc1-2", output:gsub("\n", "")) 187 assert.match("Successfully installed dependencies for luasocket 3.0rc1-2", output, 1, true)
188 assert.is_true(os.remove("luasocket-3.0rc1-2." .. test_env.platform .. ".rock")) 188 assert.is_true(os.remove("luasocket-3.0rc1-2." .. test_env.platform .. ".rock"))
189 end) 189 end)
190 190