Skip to content

Commit

Permalink
Python 3.6 workaround in test
Browse files Browse the repository at this point in the history
Signed-off-by: Carmen Bianca Bakker <[email protected]>
  • Loading branch information
carmenbianca committed Oct 12, 2022
1 parent 979088e commit 8df7f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_download_deprecated(monkeypatch):
mocked = MagicMock(return_value=MockResponse("hello", 200))
monkeypatch.setattr(requests, "get", mocked)
download_license("GPL-3.0")
assert "deprecated_GPL-3.0" in mocked.call_args.args[0]
assert "deprecated_GPL-3.0" in mocked.call_args[0]


def test_put_simple(fake_repository, monkeypatch):
Expand Down

0 comments on commit 8df7f6b

Please sign in to comment.