Skip to content

Commit

Permalink
fixed tests so they call the proper koza app name
Browse files Browse the repository at this point in the history
  • Loading branch information
AO33 committed Oct 15, 2024
1 parent 9fb8b74 commit 7f972bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_disease_mode_of_inheritance_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from biolink_model.datamodel.pydanticmodel_v2 import DiseaseOrPhenotypicFeatureToGeneticInheritanceAssociation
from koza.utils.testing_utils import mock_koza # noqa: F401

INGEST_NAME = "disease_mode_of_inheritance"
INGEST_NAME = "hpoa_disease_mode_of_inheritance"
INGEST_CODE = "./src/monarch_phenotype_profile_ingest/disease_mode_of_inheritance_transform.py"


Expand Down
2 changes: 1 addition & 1 deletion tests/test_disease_to_phenotype_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from biolink_model.datamodel.pydanticmodel_v2 import DiseaseToPhenotypicFeatureAssociation
from koza.utils.testing_utils import mock_koza # noqa: F401

INGEST_NAME = "disease_to_phenotype"
INGEST_NAME = "hpoa_disease_to_phenotype"
INGEST_CODE = "./src/monarch_phenotype_profile_ingest/disease_to_phenotype_transform.py"


Expand Down
2 changes: 1 addition & 1 deletion tests/test_gene_to_disease_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def row():
@pytest.fixture
def basic_g2d_entities(mock_koza, row):
return mock_koza(
name="gene_to_disease",
name="hpoa_gene_to_disease",
data=row,
transform_code="./src/monarch_phenotype_profile_ingest/gene_to_disease_transform.py"
)
Expand Down

0 comments on commit 7f972bd

Please sign in to comment.