File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def test_abstract_test_case_generation(self):
80
80
self .json_class .setup ()
81
81
effects = {"NoEffect" : NoEffect ()}
82
82
mutates = None
83
- expected_effect = dict ({"test_input " : "NoEffect" })
83
+ expected_effect = dict ({"test_output " : "NoEffect" })
84
84
example_test = {
85
85
"name" : "test1" ,
86
86
"mutations" : {},
@@ -100,7 +100,7 @@ def test_execute_concrete_test(self):
100
100
"Increase" : lambda x : self .json_class .modelling_scenario .treatment_variables [x ].z3 >
101
101
self .json_class .modelling_scenario .variables [x ].z3
102
102
}
103
- expected_effect = dict ({"test_input " : "NoEffect" })
103
+ expected_effect = dict ({"test_output " : "NoEffect" })
104
104
example_test = {
105
105
"name" : "test1" ,
106
106
"mutations" : {"test_input" : "Increase" },
@@ -152,7 +152,7 @@ def setup_data_file(data_path):
152
152
writer .writerow (data )
153
153
154
154
def setup_dag_file (dag_path ):
155
- dag_dot = """digraph G { test_input -> temp; temp -> test_output; temp2 -> test_input; temp2 -> test_output }"""
155
+ dag_dot = """digraph G { test_input -> B; B -> C; test_output -> test_input; test_output -> C }"""
156
156
with open (dag_path , "w" ) as f :
157
157
f .write (dag_dot )
158
158
f .close ()
You can’t perform that action at this time.
0 commit comments