d95c6f4de6
Confirmed that reverting https://dart-review.googlesource.com/c/sdk/+/325600 causes these new tests to fail. Fixes: https://github.com/dart-lang/sdk/issues/53466 Change-Id: I9ffb2e75664d965a410581d71b7e5c6e681b60d8 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/325942 Reviewed-by: Mayank Patke <fishythefish@google.com> Commit-Queue: Nate Biggs <natebiggs@google.com>
14 lines
400 B
Dart
14 lines
400 B
Dart
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'package:async_helper/async_helper.dart';
|
|
|
|
import 'serialization_diff_helper.dart';
|
|
|
|
void main(List<String> args) {
|
|
asyncTest(() async {
|
|
await runTests(args, 2);
|
|
});
|
|
}
|