diff options
author | Sean Quah <seanq@element.io> | 2022-05-06 20:29:23 +0100 |
---|---|---|
committer | Sean Quah <seanq@element.io> | 2022-05-06 20:54:30 +0100 |
commit | 4e644eae8d69b2585f4b4f35d813824b0d4619d8 (patch) | |
tree | 48a4c720dc44a5260c8c6c50c35bb13cdf5efd3e | |
parent | Add missing docstring for `expected_body` parameter (diff) | |
download | synapse-squah/add_endpoint_cancellation_flag.tar.xz |
Improve assertion message when `await_result=False` is forgotten github/squah/add_endpoint_cancellation_flag squah/add_endpoint_cancellation_flag
Signed-off-by: Sean Quah <seanq@element.io>
-rw-r--r-- | tests/http/server/_base.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/http/server/_base.py b/tests/http/server/_base.py index 02b20b2cc8..b9f1a381aa 100644 --- a/tests/http/server/_base.py +++ b/tests/http/server/_base.py @@ -60,7 +60,9 @@ class EndpointCancellationTestHelperMixin(unittest.TestCase): request = channel.request self.assertFalse( - channel.is_finished(), "Request finished before we could disconnect" + channel.is_finished(), + "Request finished before we could disconnect - " + "was `await_result=False` passed to `make_request`?", ) # We're about to disconnect the request. This also disconnects the channel, so |