Skip to content

Commit

Permalink
Merge pull request snabbco#796 from Igalia/lwaftr-kristian-update
Browse files Browse the repository at this point in the history
Fix small nit in test on lwaftr-kristian
  • Loading branch information
xray7224 authored Apr 19, 2017
2 parents 81b1545 + 0bf92ba commit dd88562
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/program/lwaftr/tests/subcommands/config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ def test_add(self):
self.run_cmd(add_args)
get_args = self.get_cmd_args('get')
get_args.append(
'/softwire-config/binding-table/softwire[ipv4=1.2.3.4][psid=7]')
'/softwire-config/binding-table/softwire[ipv4=1.2.3.4][psid=7]'
'/b4-ipv6')
output = self.run_cmd(get_args)
# run_cmd checks the exit code and fails the test if it is not zero.
get_args[-1] += '/b4-ipv6'
self.assertEqual(
output.strip(), b'b4-ipv6 ::1;\nbr-address 2001:db8::;',
output.strip(), b'::1',
'\n'.join(('OUTPUT', str(output, ENC))))

def test_get_state(self):
Expand Down

0 comments on commit dd88562

Please sign in to comment.