Skip to content

Commit

Permalink
Fix duplication of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvanrun committed Nov 15, 2024
1 parent 79c72f9 commit ff97967
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 301 deletions.
8 changes: 4 additions & 4 deletions tests/test_create_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
),
),
)
def test_clean_file_source(source, maximum_number, context):
def test_prep_file_source(source, maximum_number, context):
with context:
clean_file_source(source, maximum_number=maximum_number)

Expand Down Expand Up @@ -149,7 +149,7 @@ def test_civ_strategy_specialization(
),
)
@sync_generator_test
def test_file_civ_clean(source, context, interface_kind):
def test_file_civ_prep(source, context, interface_kind):
strategy = FileCIVCreateStrategy(
source=source,
interface=ComponentInterfaceFactory(
Expand Down Expand Up @@ -185,7 +185,7 @@ def test_file_civ_clean(source, context, interface_kind):
),
)
@sync_generator_test
def test_image_civ_clean(source, context):
def test_image_civ_prep(source, context):
strategy = ImageCIVCreateStrategy(
source=source,
interface=ComponentInterfaceFactory(super_kind="Image"),
Expand Down Expand Up @@ -237,7 +237,7 @@ def test_image_civ_clean(source, context):
),
)
@sync_generator_test
def test_value_civ_clean(source, context):
def test_value_civ_prep(source, context):
strategy = ValueCIVCreateStrategy(
source=source,
interface=ComponentInterfaceFactory(super_kind="Value"),
Expand Down
297 changes: 0 additions & 297 deletions tests/test_upload_strategies.py

This file was deleted.

0 comments on commit ff97967

Please sign in to comment.