Skip to content

Commit

Permalink
Expand space available setting (#3542)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers authored Dec 9, 2024
1 parent ea5fa52 commit 8c3177b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_netmiko_scp.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_verify_space_available_put(scp_fixture):
ssh_conn, scp_transfer = scp_fixture
assert scp_transfer.verify_space_available() is True
# intentional make there not be enough space available
scp_transfer.file_size = 100_000_000_000
scp_transfer.file_size = 200_000_000_000
assert scp_transfer.verify_space_available() is False


Expand Down

0 comments on commit 8c3177b

Please sign in to comment.