Skip to content

Commit 553df4b

Browse files
stereotype441Commit Queue
authored andcommitted
Fix name confusion between SuperInExtensionTest and SuperInExtensionTypeTest
Previously, both super_in_extension_test.dart and super_in_extension_type_test.dart contained a class called SuperInExtensionTest. Rename the one in super_in_extension_type_test.dart to avoid confusion. Change-Id: Ic55c91a02245baf2c31adcf68122198ffb87653e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/363706 Reviewed-by: Konstantin Shcheglov <[email protected]> Commit-Queue: Paul Berry <[email protected]>
1 parent 9d04850 commit 553df4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/analyzer/test/src/diagnostics/super_in_extension_type_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import '../dart/resolution/context_collection_resolution.dart';
99

1010
main() {
1111
defineReflectiveSuite(() {
12-
defineReflectiveTests(SuperInExtensionTest);
12+
defineReflectiveTests(SuperInExtensionTypeTest);
1313
});
1414
}
1515

1616
@reflectiveTest
17-
class SuperInExtensionTest extends PubPackageResolutionTest {
17+
class SuperInExtensionTypeTest extends PubPackageResolutionTest {
1818
test_binaryOperator() async {
1919
await assertErrorsInCode('''
2020
extension type A(int it) {

0 commit comments

Comments
 (0)