We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04d922 commit 702bb03Copy full SHA for 702bb03
utest/namespace/test_pythonpath_setting.py
@@ -14,6 +14,6 @@ def test_bundled_libraries_path_is_in_sys_path_by_default():
14
@patch.object(robotlibraryloader, 'find_installed_robot_libraries')
15
def test_bundle_path_is_removed_when_using_installed_rf_libraries(mock_func):
16
namespace.Namespace(FakeSettings({'use installed robot libraries': True}))
17
- mock_func.assert_called()
+ mock_func.assert_called_once_with(None)
18
assert_true(namespace.REMOTE_LIB_PATH in sys.path)
19
assert_false(namespace.BUNDLED_LIBRARIES_PATH in sys.path)
0 commit comments