Fix pep8 compliance

This commit is contained in:
Peter Melnichenko 2016-04-30 20:36:45 +03:00
parent c279599665
commit c6599907dd

View File

@ -91,7 +91,10 @@ class TestCLI(unittest.TestCase):
def test_install_lua_from_given_git_repo_with_luarocks_from_local_sources(self):
local_luarocks = os.path.join("test", "builds", "luarocks")
self.assertSuccess(["git", "clone", "https://github.com/keplerproject/luarocks", "--depth=1", local_luarocks], from_prefix=False)
self.assertSuccess([
"git", "clone", "https://github.com/keplerproject/luarocks",
"--depth=1", local_luarocks], from_prefix=False)
self.assertHererocksSuccess(["--lua", "https://github.com/lua/lua@5.1.3-rc3", "--luarocks", local_luarocks])
self.assertSuccess(["lua", "-v"], ["Lua 5.1.3"])
self.assertHererocksSuccess(["--show"], ["Lua 5.1", "cloned from https://github.com/lua/lua", "from local sources"])
self.assertHererocksSuccess(["--show"], [
"Lua 5.1", "cloned from https://github.com/lua/lua", "from local sources"])