Skip to content

Commit

Permalink
fixup! fixup! tests: Initial import of congure_reno tests
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Mar 3, 2021
1 parent 9551e9d commit 9939c54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/congure_reno/tests/01-run.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_no_setup(self):
class TestCongURERenoDefaultInitTests(TestCongUREBase):
def setUp(self):
super().setUp()
res = self.exec_cmd('cong_setup 0')
res = self.shell.setup(0)
self.assertIn('success', res)

def test_setup(self):
Expand Down Expand Up @@ -237,7 +237,7 @@ def test_init(self):
class TestCongURERenoDefault(TestCongUREBase):
def setUp(self):
super().setUp()
res = self.exec_cmd('cong_setup 0')
res = self.shell.setup(0)
self.assertIn('success', res)
res = self.cong_init()
self.assertIn('success', res)
Expand Down Expand Up @@ -774,8 +774,8 @@ def test_msgs_lost(self):

class TestCongURERenoCustomIncDec(TestCongUREBase):
def setUp(self):
super().setUp()
res = self.exec_cmd('cong_setup 1')
self.shell.clear()
res = self.shell.setup(1)
self.assertIn('success', res)
res = self.cong_init()
self.assertIn('success', res)
Expand Down

0 comments on commit 9939c54

Please sign in to comment.