Skip to content

Commit

Permalink
Removing unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
renan-souza committed Dec 18, 2024
1 parent d470ffc commit e0481a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/misc_tests/singleton_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit e0481a8

Please sign in to comment.