We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8367ca0 commit 7e7738eCopy full SHA for 7e7738e
tests/test_image.py
@@ -1,3 +1,5 @@
1
+from ftmq.store.memory import MemoryStore
2
+
3
from tests.support import TestCase
4
5
@@ -46,6 +48,8 @@ def test_tesseract_ocr_regression(self):
46
48
}
47
49
50
for test_image_type in test_data:
51
+ # flush store for emitted test assertion to not fail (see self.get_emitted)
52
+ self.manager.emitted = MemoryStore()
53
fixture_path, entity = self.fixture(test_data[test_image_type]["file"])
54
self.manager.ingest(fixture_path, entity)
55
0 commit comments