Skip to content

Commit 389b9a5

Browse files
committed
Example typo
1 parent 3ff7f28 commit 389b9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ One can use ``patch`` as a decorator to improve the flow of the test:
107107
@mock.patch('os.remove')
108108
@mock.patch('os.listdir')
109109
@mock.patch('shutil.copy')
110-
def test_unix_fs(mocked_copy, mocked_listdir, mocked_copy):
110+
def test_unix_fs(mocked_copy, mocked_listdir, mocked_remove):
111111
UnixFS.rm('file')
112112
os.remove.assert_called_once_with('file')
113113

0 commit comments

Comments
 (0)