From e0481a80d7048d4a089bc9744a2ab563ca40a0e1 Mon Sep 17 00:00:00 2001 From: Renan Souza Date: Tue, 17 Dec 2024 19:17:32 -0500 Subject: [PATCH] Removing unused test --- tests/misc_tests/singleton_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/misc_tests/singleton_test.py b/tests/misc_tests/singleton_test.py index 4150ac24..63a917a2 100644 --- a/tests/misc_tests/singleton_test.py +++ b/tests/misc_tests/singleton_test.py @@ -24,7 +24,7 @@ def test_singleton(self): else: raise NotImplementedError - assert id(dao) != id(dao2) - assert Flowcept.db._dao == dao # TODO: This is misleading. Classes are equal but instances are not necessarily equal. - assert id(Flowcept.db._dao) == id(dao) + assert id(dao) != id(dao2) + #assert Flowcept.db._dao == dao + #assert id(Flowcept.db._dao) == id(dao)