Skip to content

Commit ea02f13

Browse files
committed
test_fixtures.test_request_ctx_is_kept_around: Removed unused local
1 parent ba640e8 commit ea02f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_request_ctx(self, app, request_ctx):
2323
assert request_ctx.app is app
2424

2525
def test_request_ctx_is_kept_around(self, client):
26-
res = client.get(url_for('index'), headers=[('X-Something', '42')])
26+
client.get(url_for('index'), headers=[('X-Something', '42')])
2727
assert request.headers['X-Something'] == '42'
2828

2929

0 commit comments

Comments
 (0)