Skip to content

Commit

Permalink
test(collectoins): pass on use_extent in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinius committed Feb 22, 2025
1 parent ed92aca commit 3e06ca9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions eoxserver/resources/coverages/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,7 @@ def test_import_coverages_from_other_collection(self):
from_coveragetypes=[],
coverage_import=True,
product_import=False,
use_extent=False,
)

self.assertIn(self.coverage, self.collection.coverages.all())
Expand All @@ -669,6 +670,7 @@ def test_import_products_from_other_collection(self):
from_coveragetypes=[],
coverage_import=False,
product_import=True,
use_extent=False,
)

self.assertIn(self.product, self.collection.products.all())
Expand All @@ -683,6 +685,7 @@ def test_import_coverages_from_coverage_type(self):
from_coveragetypes=[self.coverage_type.name],
coverage_import=True,
product_import=False,
use_extent=False,
)

self.assertIn(self.coverage, self.collection.coverages.all())
Expand All @@ -697,6 +700,7 @@ def test_import_products_from_product_type(self):
from_coveragetypes=[],
coverage_import=False,
product_import=True,
use_extent=False,
)

self.assertIn(self.product, self.collection.products.all())

0 comments on commit 3e06ca9

Please sign in to comment.