File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ def test_Positive_fail_ci(self):
107
107
ctr = CausalTestResult (
108
108
estimator = self .estimator ,
109
109
test_value = test_value ,
110
- confidence_intervals = [- 1 , 1 ],
110
+ confidence_intervals = [pd . Series ( - 1 ), pd . Series ( 1 ) ],
111
111
effect_modifier_configuration = None ,
112
112
)
113
113
ev = Positive ()
@@ -274,8 +274,8 @@ def test_someEffect_str(self):
274
274
"adjustment_set" : set (),
275
275
"effect_estimate" : 0 ,
276
276
"effect_measure" : "ate" ,
277
- "ci_low" : - 0.1 ,
278
- "ci_high" : 0.2 ,
277
+ "ci_low" : [ - 0.1 ] ,
278
+ "ci_high" : [ 0.2 ] ,
279
279
},
280
280
)
281
281
@@ -298,8 +298,8 @@ def test_someEffect_dict(self):
298
298
"adjustment_set" : set (),
299
299
"effect_estimate" : 0 ,
300
300
"effect_measure" : "ate" ,
301
- "ci_low" : - 0.1 ,
302
- "ci_high" : 0.2 ,
301
+ "ci_low" : [ - 0.1 ] ,
302
+ "ci_high" : [ 0.2 ] ,
303
303
},
304
304
)
305
305
You can’t perform that action at this time.
0 commit comments