| Index: test/type_substitute_bounds_test.dart
|
| diff --git a/test/type_substitute_bounds_test.dart b/test/type_substitute_bounds_test.dart
|
| index 817101e7d9ababf7b4c920e69c6eccfa83e7d9f4..bddd7bd1af65774c37d891dfa124c82aff67a0cc 100644
|
| --- a/test/type_substitute_bounds_test.dart
|
| +++ b/test/type_substitute_bounds_test.dart
|
| @@ -72,7 +72,9 @@ main() {
|
| upperBounds[parameter] = environment.parse(bounds.upper);
|
| lowerBounds[parameter] = environment.parse(bounds.lower);
|
| });
|
| - var substituted = substituteBounds(type, upperBounds, lowerBounds);
|
| + var substituted = Substitution
|
| + .fromUpperAndLowerBounds(upperBounds, lowerBounds)
|
| + .substituteType(type);
|
| var expected = environment.parse(testCase.expected);
|
| if (substituted != expected) {
|
| fail('Expected `$expected` but got `$substituted`');
|
|
|