Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
selmanozleyen committed Jul 3, 2024
1 parent a9902e1 commit a0984cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/problems/time/test_temporal_base_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_initialization_pipeline(self, adata_time_marginal_estimations: AnnData)
a=True,
b=True,
marginal_kwargs={
"profileration_key": "proliferation",
"proliferation_key": "proliferation",
"apoptosis_key": "apoptosis",
},
)
Expand Down Expand Up @@ -90,7 +90,7 @@ def test_prior_growth_rates(self, adata_time_marginal_estimations: AnnData):
a=True,
b=True,
marginal_kwargs={
"profileration_key": "proliferation",
"proliferation_key": "proliferation",
},
)
assert prob.delta == (t2 - t1)
Expand All @@ -109,7 +109,7 @@ def test_posterior_growth_rates(self, adata_time_marginal_estimations: AnnData):
y={"attr": "X"},
a=True,
b=True,
marginal_kwargs={"profileration_key": "proliferation"},
marginal_kwargs={"proliferation_key": "proliferation"},
)
prob = prob.solve(max_iterations=10)
assert prob.delta == (t2 - t1)
Expand All @@ -134,7 +134,7 @@ def test_marginal_kwargs(self, adata_time_marginal_estimations: AnnData, margina
a=True,
b=True,
marginal_kwargs={
"profileration_key": "proliferation",
"proliferation_key": "proliferation",
"apoptosis_key": "apoptosis",
},
)
Expand All @@ -147,7 +147,7 @@ def test_marginal_kwargs(self, adata_time_marginal_estimations: AnnData, margina
a=True,
b=True,
marginal_kwargs={
"profileration_key": "proliferation",
"proliferation_key": "proliferation",
"apoptosis_key": "apoptosis",
**marginal_kwargs,
},
Expand Down

0 comments on commit a0984cf

Please sign in to comment.