Skip to content

Commit 6563c60

Browse files
committed
fix: pytest again
1 parent 5dfbcbd commit 6563c60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/testing_tests/test_metamorphic_relations.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_should_cause_logistic_json_stub(self):
120120
should_cause_mr = ShouldCause(BaseTestCase("X1", "Z"), adj_set)
121121
self.assertEqual(
122122
should_cause_mr.to_json_stub(
123-
effect_type="total", estimate_type="unit_odds_ratio", estimator="LogisticRegressionEstimator", skip=True
123+
effect_type="total", estimate_type="unit_odds_ratio", estimator="LogisticRegressionEstimator", skip=False
124124
),
125125
{
126126
"effect": "total",
@@ -263,7 +263,7 @@ def test_generate_causal_tests_ignore_cycles(self):
263263
tests = json.load(f)
264264
expected = list(
265265
map(
266-
lambda x: x.to_json_stub(skip=True),
266+
lambda x: x.to_json_stub(skip=False),
267267
filter(
268268
lambda relation: len(list(dcg.predecessors(relation.base_test_case.outcome_variable))) > 0,
269269
relations,
@@ -282,7 +282,7 @@ def test_generate_causal_tests(self):
282282
tests = json.load(f)
283283
expected = list(
284284
map(
285-
lambda x: x.to_json_stub(skip=True),
285+
lambda x: x.to_json_stub(skip=False),
286286
filter(
287287
lambda relation: len(list(dag.predecessors(relation.base_test_case.outcome_variable))) > 0,
288288
relations,

0 commit comments

Comments
 (0)