We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4f79a commit 81162eeCopy full SHA for 81162ee
tests/test_cli.py
@@ -105,7 +105,7 @@ def test_save() -> None:
105
runner = CliRunner()
106
result = runner.invoke(
107
main,
108
- "--url https://news.ycombinator.com --user_agent my-unique-user-agent \
+ "--url https://yahoo.com --user_agent my-unique-user-agent \
109
--save --headers".split(
110
" "
111
),
@@ -116,7 +116,7 @@ def test_save() -> None:
116
result.output.find("Cached save:\nFalse") != -1
117
)
118
assert result.output.find("Save API headers:\n") != -1
119
- assert result.output.find("://news.ycombinator.com") != -1
+ assert result.output.find("yahoo.com") != -1
120
121
122
def test_version() -> None:
0 commit comments