diff options
Diffstat (limited to 'pyblackbird_cc/resources/tests/conftest.py')
-rw-r--r-- | pyblackbird_cc/resources/tests/conftest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pyblackbird_cc/resources/tests/conftest.py b/pyblackbird_cc/resources/tests/conftest.py index a5c1e41..0d1ed87 100644 --- a/pyblackbird_cc/resources/tests/conftest.py +++ b/pyblackbird_cc/resources/tests/conftest.py @@ -1,9 +1,8 @@ import pytest -from pyblackbird_cc.resources.factories import ResourceModelFactory, PDFPageSnapshotModelFactory +from pyblackbird_cc.resources.factories import ResourceModelFactory @pytest.fixture() def resources(): - snapshots = PDFPageSnapshotModelFactory.create_batch(3) return ResourceModelFactory.create_batch(5) |