Skip to content

Commit

Permalink
Refactor: Fix sdss where changes to utils breaks sdss
Browse files Browse the repository at this point in the history
  • Loading branch information
nkphysics committed Mar 29, 2023
1 parent 87fb8f1 commit 395d38d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astroquery/sdss/tests/test_sdss.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def mockreturn(method, url, **kwargs):
with open(filename, 'rb') as infile:
content = infile.read()

return MockResponse(content, url)
return MockResponse(content=content, url=url)

mp = request.getfixturevalue("monkeypatch")

Expand Down

0 comments on commit 395d38d

Please sign in to comment.