diff --git a/poetry.lock b/poetry.lock index 873a528..ba1c9e6 100644 --- a/poetry.lock +++ b/poetry.lock @@ -129,13 +129,13 @@ test = ["pytest (>=6)"] [[package]] name = "faker" -version = "32.1.0" +version = "33.0.0" description = "Faker is a Python package that generates fake data for you." optional = false python-versions = ">=3.8" files = [ - {file = "Faker-32.1.0-py3-none-any.whl", hash = "sha256:c77522577863c264bdc9dad3a2a750ad3f7ee43ff8185072e482992288898814"}, - {file = "faker-32.1.0.tar.gz", hash = "sha256:aac536ba04e6b7beb2332c67df78485fc29c1880ff723beac6d1efd45e2f10f5"}, + {file = "Faker-33.0.0-py3-none-any.whl", hash = "sha256:68e5580cb6b4226710886e595eabc13127149d6e71e9d1db65506a7fbe2c7fce"}, + {file = "faker-33.0.0.tar.gz", hash = "sha256:9b01019c1ddaf2253ca2308c0472116e993f4ad8fc9905f82fa965e0c6f932e9"}, ] [package.dependencies] diff --git a/tests/test_cli_setup.py b/tests/test_cli_setup.py index 5dc0e63..bfdac04 100644 --- a/tests/test_cli_setup.py +++ b/tests/test_cli_setup.py @@ -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?" )