Skip to content

Commit cbd3118

Browse files
committed
Merge pull request #1 from jespino/patch-1
Example typo
2 parents 3ff7f28 + 389b9a5 commit cbd3118

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)