Skip to content

Commit

Permalink
Make tests py3 friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
claytondaley authored and jpic committed Apr 12, 2024
1 parent 79ea9c3 commit 7057066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions session_security/tests/test_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_default(self):
)

self.assertNotIn(
'returnToUrl',
b'returnToUrl',
resp.content
)

Expand All @@ -31,6 +31,6 @@ def test_setting(self):
)

self.assertIn(
'returnToUrl',
b'returnToUrl',
resp.content
)

0 comments on commit 7057066

Please sign in to comment.