@@ -52,7 +52,10 @@ test.describe('Solver CVODE tests', () => {
5252 const instance = document . instantiate ( ) ;
5353
5454 assertIssues ( loc , instance , [
55- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the maximum step cannot be equal to -1.234. It must be greater or equal to 0.' ]
55+ [
56+ loc . Issue . Type . ERROR ,
57+ 'Task instance | CVODE: the maximum step cannot be equal to -1.234. It must be greater or equal to 0.'
58+ ]
5659 ] ) ;
5760 } ) ;
5861
@@ -70,7 +73,10 @@ test.describe('Solver CVODE tests', () => {
7073 const instance = document . instantiate ( ) ;
7174
7275 assertIssues ( loc , instance , [
73- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the maximum number of steps cannot be equal to 0. It must be greater than 0.' ]
76+ [
77+ loc . Issue . Type . ERROR ,
78+ 'Task instance | CVODE: the maximum number of steps cannot be equal to 0. It must be greater than 0.'
79+ ]
7480 ] ) ;
7581 } ) ;
7682
@@ -89,7 +95,10 @@ test.describe('Solver CVODE tests', () => {
8995 const instance = document . instantiate ( ) ;
9096
9197 assertIssues ( loc , instance , [
92- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the upper half-bandwidth cannot be equal to -1. It must be between 0 and 3.' ]
98+ [
99+ loc . Issue . Type . ERROR ,
100+ 'Task instance | CVODE: the upper half-bandwidth cannot be equal to -1. It must be between 0 and 3.'
101+ ]
93102 ] ) ;
94103 } ) ;
95104
@@ -108,7 +117,10 @@ test.describe('Solver CVODE tests', () => {
108117 const instance = document . instantiate ( ) ;
109118
110119 assertIssues ( loc , instance , [
111- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the upper half-bandwidth cannot be equal to 4. It must be between 0 and 3.' ]
120+ [
121+ loc . Issue . Type . ERROR ,
122+ 'Task instance | CVODE: the upper half-bandwidth cannot be equal to 4. It must be between 0 and 3.'
123+ ]
112124 ] ) ;
113125 } ) ;
114126
@@ -127,7 +139,10 @@ test.describe('Solver CVODE tests', () => {
127139 const instance = document . instantiate ( ) ;
128140
129141 assertIssues ( loc , instance , [
130- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the lower half-bandwidth cannot be equal to -1. It must be between 0 and 3.' ]
142+ [
143+ loc . Issue . Type . ERROR ,
144+ 'Task instance | CVODE: the lower half-bandwidth cannot be equal to -1. It must be between 0 and 3.'
145+ ]
131146 ] ) ;
132147 } ) ;
133148
@@ -146,7 +161,10 @@ test.describe('Solver CVODE tests', () => {
146161 const instance = document . instantiate ( ) ;
147162
148163 assertIssues ( loc , instance , [
149- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the lower half-bandwidth cannot be equal to 4. It must be between 0 and 3.' ]
164+ [
165+ loc . Issue . Type . ERROR ,
166+ 'Task instance | CVODE: the lower half-bandwidth cannot be equal to 4. It must be between 0 and 3.'
167+ ]
150168 ] ) ;
151169 } ) ;
152170
@@ -164,7 +182,10 @@ test.describe('Solver CVODE tests', () => {
164182 const instance = document . instantiate ( ) ;
165183
166184 assertIssues ( loc , instance , [
167- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the relative tolerance cannot be equal to -1.234. It must be greater or equal to 0.' ]
185+ [
186+ loc . Issue . Type . ERROR ,
187+ 'Task instance | CVODE: the relative tolerance cannot be equal to -1.234. It must be greater or equal to 0.'
188+ ]
168189 ] ) ;
169190 } ) ;
170191
@@ -182,7 +203,10 @@ test.describe('Solver CVODE tests', () => {
182203 const instance = document . instantiate ( ) ;
183204
184205 assertIssues ( loc , instance , [
185- [ loc . Issue . Type . ERROR , 'Task instance | CVODE: the absolute tolerance cannot be equal to -1.234. It must be greater or equal to 0.' ]
206+ [
207+ loc . Issue . Type . ERROR ,
208+ 'Task instance | CVODE: the absolute tolerance cannot be equal to -1.234. It must be greater or equal to 0.'
209+ ]
186210 ] ) ;
187211 } ) ;
188212
0 commit comments