mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This reverts ae0a9cb560
and therefore relands #69629.
Additionally, `flutter update-packages --force-upgrade` has been run to update `pubspec.yaml` to resolve the analyze test failures.
11 lines
367 B
Dart
11 lines
367 B
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'common.dart';
|
|
|
|
// This will be used in many of our unit tests.
|
|
void expectSetMatch<T>(Iterable<T> actual, Iterable<T> expected) {
|
|
expect(Set<T>.from(actual), equals(Set<T>.from(expected)));
|
|
}
|