Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump faker from 32.1.0 to 33.0.0 #64

Merged
merged 2 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/test_cli_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_setup_ip_not_found(

mock_ip_from_hostname.assert_called_once_with(hostname)
assert result.exit_code == 1
assert result.stdout == (
f"Could not find any host by the name '{hostname}'. Is the TV \n"
"on and connected to the network?\n"
assert (
result.stdout.replace("\n", "")
== f"Could not find any host by the name '{hostname}'. Is the TV on and connected to the network?"
)