@@ -47,7 +47,7 @@ void main() {
4747 setUp (() async {
4848 setCurrentLogWriter (debug: debug);
4949 await context.setUp (
50- testSettings: TestSettings (
50+ testSettings: const TestSettings (
5151 enableExpressionEvaluation: true ,
5252 compilationMode: CompilationMode .frontendServer,
5353 moduleFormat: ModuleFormat .ddc,
@@ -523,15 +523,15 @@ void main() {
523523 // the old string still as the closure has not been reevaluated.
524524 await callEvaluateAndWaitForLog (oldCapturedString);
525525 });
526- }, timeout: Timeout .factor (2 ));
526+ }, timeout: const Timeout .factor (2 ));
527527
528528 group ('when pause_isolates_on_start is false' , () {
529529 late VmService client;
530530
531531 setUp (() async {
532532 setCurrentLogWriter (debug: debug);
533533 await context.setUp (
534- testSettings: TestSettings (
534+ testSettings: const TestSettings (
535535 enableExpressionEvaluation: true ,
536536 compilationMode: CompilationMode .frontendServer,
537537 moduleFormat: ModuleFormat .ddc,
@@ -590,7 +590,7 @@ void main() {
590590 // Program should not be paused, so this should execute.
591591 await callEvaluateAndWaitForLog (newString);
592592 });
593- }, timeout: Timeout .factor (2 ));
593+ }, timeout: const Timeout .factor (2 ));
594594}
595595
596596TypeMatcher <Event > _hasKind (String kind) =>
0 commit comments