Skip to content

Commit

Permalink
Fix lwaftr selftest run
Browse files Browse the repository at this point in the history
  • Loading branch information
dpino committed Feb 10, 2018
1 parent ed3e972 commit 3b78121
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/program/lwaftr/tests/subcommands/run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ class TestRun(BaseTestCase):
)

def test_run(self):
output = self.run_cmd(self.cmd_args)
self.assertIn(b'link report', output,
b'\n'.join((b'OUTPUT', output)))
output = self.run_cmd(self.cmd_args).decode(ENC)
self.assertIn("Migrating instance", output)

def test_run_on_a_stick_migration(self):
# The LwAFTR should be abel to migrate from non-on-a-stick -> on-a-stick
Expand Down

0 comments on commit 3b78121

Please sign in to comment.