Skip to content

Commit

Permalink
Add in a missing space. (#203)
Browse files Browse the repository at this point in the history
This will fix a flake8 warning in newer versions.

Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette authored Jan 26, 2024
1 parent 65538f0 commit 71e3c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rosidl_generator_py/test/test_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def test_arrays_of_bounded_strings():
def test_constructor():
msg = Strings(string_value='foo', check_fields=True)

assert'foo' == msg.string_value
assert 'foo' == msg.string_value

with pytest.raises(AssertionError):
Strings(unknown_field='test', check_fields=True)
Expand Down

0 comments on commit 71e3c53

Please sign in to comment.