aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham <hisham@gobolinux.org>2016-12-01 15:01:41 -0200
committerHisham <hisham@gobolinux.org>2016-12-01 15:02:34 -0200
commit19c7bbd53c1ef649bb5d0f0ba8ac7d583a72f18f (patch)
treef3bc609d599b8c8d9a3de6094df2e7f8aa9bdedd
parent922d6aaf9f99fb32c8b20c34a859548f73ff3391 (diff)
downloadluarocks-19c7bbd53c1ef649bb5d0f0ba8ac7d583a72f18f.tar.gz
luarocks-19c7bbd53c1ef649bb5d0f0ba8ac7d583a72f18f.tar.bz2
luarocks-19c7bbd53c1ef649bb5d0f0ba8ac7d583a72f18f.zip
Avoid breaking test in release branches.
-rw-r--r--spec/util_spec.lua4
-rw-r--r--src/luarocks/cmd/help.lua2
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/util_spec.lua b/spec/util_spec.lua
index 2779b1ce..988d8ef0 100644
--- a/spec/util_spec.lua
+++ b/spec/util_spec.lua
@@ -35,11 +35,11 @@ describe("Basic tests #blackbox #b_util", function()
35 assert.is_true(os.remove(delete_path)) 35 assert.is_true(os.remove(delete_path))
36 36
37 local output = run.luarocks("") 37 local output = run.luarocks("")
38 assert.is.falsy(output:find("LuaRocks scm, a module deployment system for Lua")) 38 assert.is.falsy(output:find("the Lua package manager"))
39 assert.is_true(lfs.chdir(main_path)) 39 assert.is_true(lfs.chdir(main_path))
40 40
41 output = run.luarocks("") 41 output = run.luarocks("")
42 assert.is.truthy(output:find("LuaRocks scm, a module deployment system for Lua")) 42 assert.is.truthy(output:find("the Lua package manager"))
43 end) 43 end)
44 44
45 it("LuaRocks timeout", function() 45 it("LuaRocks timeout", function()
diff --git a/src/luarocks/cmd/help.lua b/src/luarocks/cmd/help.lua
index d27c3a50..f304a1d4 100644
--- a/src/luarocks/cmd/help.lua
+++ b/src/luarocks/cmd/help.lua
@@ -20,7 +20,7 @@ help.help = [[
20]] 20]]
21 21
22local function print_banner() 22local function print_banner()
23 util.printout("\nLuaRocks "..cfg.program_version..", a module deployment system for Lua") 23 util.printout("\nLuaRocks "..cfg.program_version..", the Lua package manager")
24end 24end
25 25
26local function print_section(section) 26local function print_section(section)