Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jedie committed Jan 28, 2019
1 parent 030678c commit 75ad072
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pylucid/tests/test_pylucid_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_help(self):
output = self.pylucid_admin_run("help")
print(output)

self.assertIn("pylucid_admin.py shell", output)
self.assertIn("pylucid_admin shell", output)
self.assertIn("Available commands (type help <topic>):", output)

self.assertIn("create_page_instance", output)
Expand All @@ -47,7 +47,7 @@ def test_unknown_command(self):
output = self.pylucid_admin_run("foo bar is unknown ;)")
print(output)

self.assertIn("pylucid_admin.py shell", output)
self.assertIn("pylucid_admin shell", output)
self.assertIn("*** Unknown command: 'foo bar is unknown ;)' ***", output)

def test_path_helper(self):
Expand Down
2 changes: 1 addition & 1 deletion pylucid/tests/test_pylucid_boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_help(self):
output = self.pylucid_admin_run("help")
print(output)

self.assertIn("pylucid_boot.py shell", output)
self.assertIn("pylucid_boot shell", output)
self.assertIn("Available commands (type help <topic>):", output)

self.assertIn("boot", output)
Expand Down

0 comments on commit 75ad072

Please sign in to comment.