File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -403,8 +403,8 @@ void main() {
403
403
set_literals.constants.firstWhere ((v) => v.name == 'specifiedSet' );
404
404
untypedMap =
405
405
set_literals.constants.firstWhere ((v) => v.name == 'untypedMap' );
406
- untypedMapWithoutConst =
407
- set_literals.constants .firstWhere ((v) => v.name == 'untypedMapWithoutConst' );
406
+ untypedMapWithoutConst = set_literals.constants
407
+ .firstWhere ((v) => v.name == 'untypedMapWithoutConst' );
408
408
typedSet = set_literals.constants.firstWhere ((v) => v.name == 'typedSet' );
409
409
});
410
410
@@ -436,7 +436,8 @@ void main() {
436
436
expect (specifiedSet.constantValue, equals ('const {}' ));
437
437
// The analyzer is allowed to return a string with or without leading
438
438
// `const` here.
439
- expect (untypedMapWithoutConst.constantValue, matches (RegExp ('(const )?{}' )));
439
+ expect (
440
+ untypedMapWithoutConst.constantValue, matches (RegExp ('(const )?{}' )));
440
441
expect (untypedMap.modelType.name, equals ('Map' ));
441
442
expect (
442
443
(untypedMap.modelType as ParameterizedElementType )
You can’t perform that action at this time.
0 commit comments