diff --git a/test/test_single_boot.py b/test/test_single_boot.py index 223d544..6417bc3 100644 --- a/test/test_single_boot.py +++ b/test/test_single_boot.py @@ -51,6 +51,7 @@ class BootUpTC(MTTClusterTC): await self.run_tests("/", tests) + @skip("Code not availaable yet.") async def test_session_id_is_random(self): """Is the session id random?""" await self.create_server() @@ -62,6 +63,7 @@ class BootUpTC(MTTClusterTC): result2 = response.cookies[SESSION_KEY].value self.assertNotEqual(result1, result2, "Session ids should be unique.") + @skip("Code not availaable yet.") async def test_session_does_not_reset_after_connection(self): """Does the session id remain constant during the session""" await self.create_server()