Unverified Commit 1bb40aee authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Replace collection's SetEquals with flutter's own (#59514)

parent 6c12db37
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
import 'dart:async'; import 'dart:async';
import 'package:collection/collection.dart' show SetEquality;
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart';
import 'package:flutter/painting.dart'; import 'package:flutter/painting.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
...@@ -178,7 +177,7 @@ void main() { ...@@ -178,7 +177,7 @@ void main() {
.toSet(); .toSet();
expect( expect(
const SetEquality<String>().equals( setEquals(
description, description,
<String>{ 'brightness', <String>{ 'brightness',
'primaryColor', 'primaryColor',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment