Skip to content

Commit 4467d60

Browse files
committed
Change testcase to enforce correct behavior
1 parent 86cb3bd commit 4467d60

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test_responses.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,7 @@ def run():
657657
assert resp.status_code == status
658658
assert "session_id" in resp.cookies
659659
assert resp.cookies["session_id"] == "12345"
660-
assert resp.cookies["a"] == "b"
661-
assert resp.cookies["c"] == "d"
660+
assert set(resp.cookies.keys()) == set(['session_id'])
662661

663662
run()
664663
assert_reset()

0 commit comments

Comments
 (0)