Skip to content

Commit

Permalink
Merge branch 'release/0.3.47' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Mar 1, 2024
2 parents 7d0e920 + 97e1fa5 commit 5c6e2dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions edc_export/tests/tests/test_model_exporter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import csv
from tempfile import mkdtemp

from django.test import TestCase, override_settings, tag
from django.test import TestCase, override_settings
from edc_facility.import_holidays import import_holidays
from edc_pdutils import CsvModelExporter, ModelToDataframe
from edc_utils import get_utcnow
Expand Down Expand Up @@ -47,7 +47,6 @@ def test_records(self):
m = ModelToDataframe(model=model)
self.assertEqual(len(m.dataframe.index), 4)

@tag("1")
def test_records_as_qs(self):
m = ModelToDataframe(queryset=Crf.objects.all())
self.assertEqual(len(m.dataframe.index), 4)
Expand Down

0 comments on commit 5c6e2dd

Please sign in to comment.