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.
2 parents 3ff7f28 + 389b9a5 commit cbd3118Copy full SHA for cbd3118
README.rst
@@ -107,7 +107,7 @@ One can use ``patch`` as a decorator to improve the flow of the test:
107
@mock.patch('os.remove')
108
@mock.patch('os.listdir')
109
@mock.patch('shutil.copy')
110
- def test_unix_fs(mocked_copy, mocked_listdir, mocked_copy):
+ def test_unix_fs(mocked_copy, mocked_listdir, mocked_remove):
111
UnixFS.rm('file')
112
os.remove.assert_called_once_with('file')
113
0 commit comments