flake8
passed.
JSHint
passed.
Review Request #14308 — Created Jan. 24, 2025 and submitted
Our hosting service unit tests use
HttpTestContext.assertHTTPCall
to
test whether the right HTTP call was made during tests. The method is
supposed to verify that the given URL is used in the request. However, we
actually had a bug in the way we were accessing the URL argument. We
would try to grab it from**kwargs
even though it has its own keyword
argument in the function signature. This made it so that the URL was
never actually checked during unit tests. So even if the URL was wrong,
the unit test wouldn't catch this. This change fixes that so we're
properly grabbing the URL that was passed toassertHTTPCall
.
assertHTTPCall
,Summary | ID |
---|---|
9a23482934fdf7b267a5a22f26402d6d8991e8d3 |