Skip to content

Commit d455abe

Browse files
committed
fix mocked assert part 2
1 parent a821578 commit d455abe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cloudside/tests/test_asos.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_fetch_files(ftp_login, ftp_retr):
143143
)
144144
assert isinstance(raw_paths, filter)
145145
assert all([(isinstance(rp, pathlib.Path) or (rp is None)) for rp in raw_paths])
146-
ftp_login.assert_called_once_with("[email protected]")
146+
ftp_login.assert_called_once_with(passwd="[email protected]")
147147
assert ftp_retr.call_count == 5
148148

149149

0 commit comments

Comments
 (0)