Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stefvanhouten committed Nov 23, 2022
1 parent 34ef96b commit 973e389
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_model/test_cookie.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ def testDeprecatedHasher(self):
def testUnsupportedHash(self):
"""Validate that a cookie is invalidated when an unsupported hash is used."""
unsupported_cookie = "unsupported+hash+data"
self.secure_cookie.cookies['secureCookie'] = unsupported_cookie
self.secure_cookie.cookies["secureCookie"] = unsupported_cookie
self.assertEqual(self.secure_cookie.rawcookie, None)


if __name__ == "__main__":
unittest.main(testRunner=unittest.TextTestRunner(verbosity=2))
unittest.main(testRunner=unittest.TextTestRunner(verbosity=2))
1 change: 1 addition & 0 deletions test/test_model/test_model_alchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ def testEquality(self):
self.assertNotEqual(record_one, record_three)
self.assertNotEqual(record_one, record_four)


@unittest.skip("Skipping SQLALCHEMY tests")
class RecordTests(unittest.TestCase):
"""Online tests of methods and behavior of the Record class."""
Expand Down

0 comments on commit 973e389

Please sign in to comment.