Skip to content

Commit 71e3c53

Browse files
authored
Add in a missing space. (#203)
This will fix a flake8 warning in newer versions. Signed-off-by: Chris Lalancette <[email protected]>
1 parent 65538f0 commit 71e3c53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rosidl_generator_py/test/test_interfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def test_arrays_of_bounded_strings():
262262
def test_constructor():
263263
msg = Strings(string_value='foo', check_fields=True)
264264

265-
assert'foo' == msg.string_value
265+
assert 'foo' == msg.string_value
266266

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

0 commit comments

Comments
 (0)