Skip to content

Commit 5ce3cd2

Browse files
natebiggsCommit Queue
authored andcommitted
[ddc] Fix hot reload test runner ternary.
Change-Id: Id08d5bac6d03aaa70f91df7af31b313b767d8729 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/439680 Commit-Queue: Nicholas Shahan <[email protected]> Auto-Submit: Nate Biggs <[email protected]> Reviewed-by: Nicholas Shahan <[email protected]>
1 parent 9737e0c commit 5ce3cd2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/dev_compiler/test/hot_reload_suite.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ Future<void> main(List<String> args) async {
4444
switch (options.runtime) {
4545
RuntimePlatforms.chrome =>
4646
options.useFeServer
47-
? ChromeStandaloneSuiteRunner(options)
48-
: ChromeSuiteRunner(options),
47+
? ChromeSuiteRunner(options)
48+
: ChromeStandaloneSuiteRunner(options),
4949
RuntimePlatforms.d8 =>
5050
options.useFeServer
51-
? D8StandaloneSuiteRunner(options)
52-
: D8SuiteRunner(options),
51+
? D8SuiteRunner(options)
52+
: D8StandaloneSuiteRunner(options),
5353
RuntimePlatforms.vm => VMSuiteRunner(options),
5454
}
5555
as HotReloadSuiteRunner;

0 commit comments

Comments
 (0)