9 lines
216 B
Python
9 lines
216 B
Python
|
|
from deepface.commons.logger import Logger
|
||
|
|
|
||
|
|
logger = Logger()
|
||
|
|
|
||
|
|
|
||
|
|
def test_singleton_same_object():
|
||
|
|
assert Logger() == Logger()
|
||
|
|
logger.info("✅ id's of instances of \"singletoned\" class Logger are the same")
|