@@ -91,7 +91,8 @@ TestModel:
91
91
expect (error, isNotNull);
92
92
expect (error, isArgumentError);
93
93
if (error is ArgumentError ) {
94
- expect (error.message, 'required is removed, follow the migration to version 7.0.0' );
94
+ expect (error.message,
95
+ 'required is removed, follow the migration to version 7.0.0' );
95
96
}
96
97
});
97
98
@@ -117,7 +118,8 @@ TestModel:
117
118
expect (error, isNotNull);
118
119
expect (error, isException);
119
120
if (error is Exception ) {
120
- expect (error.toString (), 'Exception: Could not generate all models. `array` is not added to the config file' );
121
+ expect (error.toString (),
122
+ 'Exception: Could not generate all models. `array` is not added to the config file' );
121
123
}
122
124
});
123
125
@@ -144,7 +146,8 @@ TestModel:
144
146
expect (error, isNotNull);
145
147
expect (error, isException);
146
148
if (error is Exception ) {
147
- expect (error.toString (), 'Exception: Could not generate all models. `map` is not added to the config file' );
149
+ expect (error.toString (),
150
+ 'Exception: Could not generate all models. `map` is not added to the config file' );
148
151
}
149
152
});
150
153
0 commit comments