Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Mar 30, 2016
1 parent c4e2f63 commit 30e109c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rclpy/test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import sys

assert 'rclpy' not in sys.modules, "rclpy should not have been imported before running tests"
assert 'rclpy' not in sys.modules, 'rclpy should not have been imported before running tests'
sys.path.insert(0, os.getcwd())

import rclpy # noqa
Expand Down
2 changes: 1 addition & 1 deletion rclpy/test/test_select_rmw_implementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@ def test_select_rmw_implementation_by_environment():
else:
os.environ['RCLPY_IMPLEMENTATION'] = orig_rclpy_implementation_env

assert result, str(result) + str(type(result))
assert result, "type('{0}'): '{1}'".format(type(result), result)
pool.close()
pool.join()

0 comments on commit 30e109c

Please sign in to comment.