Skip to content

Commit 481934a

Browse files
committed
dartfmt
1 parent 5a6137d commit 481934a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/end2end/model_test.dart

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,8 @@ void main() {
403403
set_literals.constants.firstWhere((v) => v.name == 'specifiedSet');
404404
untypedMap =
405405
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');
408408
typedSet = set_literals.constants.firstWhere((v) => v.name == 'typedSet');
409409
});
410410

@@ -436,7 +436,8 @@ void main() {
436436
expect(specifiedSet.constantValue, equals('const {}'));
437437
// The analyzer is allowed to return a string with or without leading
438438
// `const` here.
439-
expect(untypedMapWithoutConst.constantValue, matches(RegExp('(const )?{}')));
439+
expect(
440+
untypedMapWithoutConst.constantValue, matches(RegExp('(const )?{}')));
440441
expect(untypedMap.modelType.name, equals('Map'));
441442
expect(
442443
(untypedMap.modelType as ParameterizedElementType)

0 commit comments

Comments
 (0)