Skip to content
Snippets Groups Projects
Commit 1cc471e6 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

Fix typo

parent 64b51c01
No related branches found
No related tags found
No related merge requests found
...@@ -100,17 +100,17 @@ class Testcases(unittest.TestCase): ...@@ -100,17 +100,17 @@ class Testcases(unittest.TestCase):
def test_upvote(self): def test_upvote(self):
runner = CliRunner() runner = CliRunner()
result = runner.invoke(cli, ['upvote', '@test/abcd', '--weight 100' '--password test'], input='test\n') result = runner.invoke(cli, ['upvote', '@test/abcd', '--weight 100', '--password test'], input='test\n')
self.assertEqual(result.exit_code, 0) self.assertEqual(result.exit_code, 0)
def test_downvote(self): def test_downvote(self):
runner = CliRunner() runner = CliRunner()
result = runner.invoke(cli, ['downvote', '@test/abcd', '--weight 100' '--password test'], input='test\n') result = runner.invoke(cli, ['downvote', '@test/abcd', '--weight 100', '--password test'], input='test\n')
self.assertEqual(result.exit_code, 0) self.assertEqual(result.exit_code, 0)
def test_transfer(self): def test_transfer(self):
runner = CliRunner() runner = CliRunner()
result = runner.invoke(cli, ['transfer', 'beem1', '1', 'SBD', 'test' '--password test'], input='test\n') result = runner.invoke(cli, ['transfer', 'beem1', '1', 'SBD', 'test', '--password test'], input='test\n')
self.assertEqual(result.exit_code, 0) self.assertEqual(result.exit_code, 0)
def test_powerdownroute(self): def test_powerdownroute(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment