diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-03-28 19:17:18 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2023-03-28 20:10:48 +0100 |
commit | a2315ed8e7fab4ff694c31254bb636b4ffb58dea (patch) | |
tree | 6932f907c002691ad39266a72d1aa966c2acdb0d | |
parent | bfdf1d1c1b0e021eb8aea77d7913a24749863462 (diff) | |
download | paste-a2315ed8e7fab4ff694c31254bb636b4ffb58dea.tar.gz paste-a2315ed8e7fab4ff694c31254bb636b4ffb58dea.tar.xz paste-a2315ed8e7fab4ff694c31254bb636b4ffb58dea.zip |
remove unused variable
-rw-r--r-- | tests/test_application.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_application.py b/tests/test_application.py index 52c19e6..70bad6c 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -169,7 +169,6 @@ def test_if_none_match_malformed_etag(app, token): ) assert res.status == "201 Created" assert res.headers["Location"] == res.request.url - etag = res.headers["ETag"] res = app.get( "/test_key", headers={"If-None-Match": "malformed"}, expect_errors=True ) |