File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -133,21 +133,7 @@ def test_task_init_3a(
133
133
134
134
135
135
def test_task_init_4 ():
136
- """task with interface and inputs. splitter set using split method"""
137
- nn = fun_addtwo (name = "NA" )
138
- nn .split (splitter = "a" , a = [3 , 5 ])
139
- assert np .allclose (nn .inputs .a , [3 , 5 ])
140
-
141
- assert nn .state .splitter == "NA.a"
142
- assert nn .state .splitter_rpn == ["NA.a" ]
143
-
144
- nn .state .prepare_states (nn .inputs )
145
- assert nn .state .states_ind == [{"NA.a" : 0 }, {"NA.a" : 1 }]
146
- assert nn .state .states_val == [{"NA.a" : 3 }, {"NA.a" : 5 }]
147
-
148
-
149
- def test_task_init_4a ():
150
- """task with a splitter and inputs set in the split method"""
136
+ """task with interface splitter and inputs set in the split method"""
151
137
nn = fun_addtwo (name = "NA" )
152
138
nn .split (splitter = "a" , a = [3 , 5 ])
153
139
assert np .allclose (nn .inputs .a , [3 , 5 ])
You can’t perform that action at this time.
0 commit comments