Skip to content

Commit

Permalink
Fix flake8 error (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
sloretz committed Jan 24, 2019
1 parent 29848db commit 2149443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rosidl_generator_py/test/test_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
def test_strings():
a = Strings()

assert a.empty_string is ''
assert '' == a.empty_string
assert 'Hello world!' == a.def_string


Expand Down Expand Up @@ -105,7 +105,7 @@ def test_constants():
def test_default_values():
a = Strings()

assert a.empty_string is ''
assert '' == a.empty_string
assert 'Hello world!' == a.def_string
a.def_string = 'Bye world'
assert 'Bye world' == a.def_string
Expand Down

0 comments on commit 2149443

Please sign in to comment.