Skip to content

Commit 1bb40ae

Browse files
authored
Replace collection's SetEquals with flutter's own (flutter#59514)
1 parent 6c12db3 commit 1bb40ae

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/flutter/test/cupertino/theme_test.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import 'dart:async';
88

9-
import 'package:collection/collection.dart' show SetEquality;
109
import 'package:flutter/foundation.dart';
1110
import 'package:flutter/painting.dart';
1211
import 'package:flutter/cupertino.dart';
@@ -178,7 +177,7 @@ void main() {
178177
.toSet();
179178

180179
expect(
181-
const SetEquality<String>().equals(
180+
setEquals(
182181
description,
183182
<String>{ 'brightness',
184183
'primaryColor',

0 commit comments

Comments
 (0)