Skip to content

Commit 702bb03

Browse files
committed
Fix unit tests
1 parent a04d922 commit 702bb03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utest/namespace/test_pythonpath_setting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ def test_bundled_libraries_path_is_in_sys_path_by_default():
1414
@patch.object(robotlibraryloader, 'find_installed_robot_libraries')
1515
def test_bundle_path_is_removed_when_using_installed_rf_libraries(mock_func):
1616
namespace.Namespace(FakeSettings({'use installed robot libraries': True}))
17-
mock_func.assert_called()
17+
mock_func.assert_called_once_with(None)
1818
assert_true(namespace.REMOTE_LIB_PATH in sys.path)
1919
assert_false(namespace.BUNDLED_LIBRARIES_PATH in sys.path)

0 commit comments

Comments
 (0)