Skip to content

Commit 29e6dcd

Browse files
Remove BaseTestCase inheritance from causal_test_case.py
1 parent b899c2c commit 29e6dcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

causal_testing/testing/causal_test_case.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
logger = logging.getLogger(__name__)
99

1010

11-
class CausalTestCase(BaseCausalTest):
11+
class CausalTestCase:
1212
""")
1313
A causal test case is a triple (X, Delta, Y), where X is an input configuration, Delta is an intervention, and
1414
Y is the expected causal effect on a particular output. The goal of a causal test case is to test whether the
@@ -71,5 +71,5 @@ def __str__(self):
7171
control_config = {k.name: v for k, v in self.control_input_configuration.items()}
7272
return (
7373
f"Running {treatment_config} instead of {control_config} should cause the following "
74-
f"changes to {self.outcome_variables}: {self.expected_causal_effect}."
74+
f"changes to {self.outcome_variable}: {self.expected_causal_effect}."
7575
)

0 commit comments

Comments
 (0)