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

fix(dns): update test assertion and core version pins #10096

Merged
merged 2 commits into from
Jan 10, 2020
Merged
Changes from 1 commit
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
Next Next commit
Adjust request params assertion in test (timeout)
  • Loading branch information
plamut committed Jan 10, 2020
commit 4ae92d9f73214785cb7595d69c503fd83ad81f38
6 changes: 5 additions & 1 deletion dns/tests/unit/test__http.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,9 @@ def test_extra_headers(self):
}
expected_uri = conn.build_api_url("/rainbow")
http.request.assert_called_once_with(
data=req_data, headers=expected_headers, method="GET", url=expected_uri
data=req_data,
headers=expected_headers,
method="GET",
url=expected_uri,
timeout=None,
)