[gardening] Remove obsolete Flutter HHH patch

This change was submitted into Flutter/flutter already
(6f9ed76faf),
so removing this patch as it cannot be applied anymore and causes
Flutter HHH to fail.

Change-Id: Ic1b44f0ec0c85b9d343079f8a067cd59ebf37170
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/137040
Commit-Queue: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
This commit is contained in:
Alexander Markov 2020-02-24 20:34:46 +00:00
parent b4d4eb00df
commit 070f67a05b

View file

@ -1,12 +0,0 @@
diff --git a/packages/flutter/test/foundation/covariant_templates_test.dart b/packages/flutter/test/foundation/covariant_templates_test.dart
index 621ad182e..d522000cb 100644
--- a/packages/flutter/test/foundation/covariant_templates_test.dart
+++ b/packages/flutter/test/foundation/covariant_templates_test.dart
@@ -18,6 +18,6 @@ void main() {
final A<X> ayAsAx = ay;
expect(() {
ayAsAx.u = X();
- }, throwsAssertionError);
+ }, throwsA(isA<TypeError>()));
});
}