diff options
author | Hisham <hisham@gobolinux.org> | 2016-12-01 15:01:41 -0200 |
---|---|---|
committer | Hisham <hisham@gobolinux.org> | 2016-12-01 15:01:41 -0200 |
commit | 9f91ef03e03720783b3f129fc51bfd5bf7af97db (patch) | |
tree | 1e3e88bbd92306e13e5a158c9abed2ad8c4f97aa | |
parent | 604bbd6002276b4e540cf11eac79bcfc552444ff (diff) | |
download | luarocks-9f91ef03e03720783b3f129fc51bfd5bf7af97db.tar.gz luarocks-9f91ef03e03720783b3f129fc51bfd5bf7af97db.tar.bz2 luarocks-9f91ef03e03720783b3f129fc51bfd5bf7af97db.zip |
Avoid breaking test in release branches.
-rw-r--r-- | spec/util_spec.lua | 4 | ||||
-rw-r--r-- | src/luarocks/help.lua | 2 |
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/help.lua b/src/luarocks/help.lua index 871e97e9..ade46039 100644 --- a/src/luarocks/help.lua +++ b/src/luarocks/help.lua | |||
@@ -21,7 +21,7 @@ help.help = [[ | |||
21 | ]] | 21 | ]] |
22 | 22 | ||
23 | local function print_banner() | 23 | local function print_banner() |
24 | util.printout("\nLuaRocks "..cfg.program_version..", a module deployment system for Lua") | 24 | util.printout("\nLuaRocks "..cfg.program_version..", the Lua package manager") |
25 | end | 25 | end |
26 | 26 | ||
27 | local function print_section(section) | 27 | local function print_section(section) |