diff --git a/packages/material_ui/temporarily_disabled_tests/animated_icons_test.dart b/packages/material_ui/test/animated_icons_test.dart similarity index 98% rename from packages/material_ui/temporarily_disabled_tests/animated_icons_test.dart rename to packages/material_ui/test/animated_icons_test.dart index b017b5ed8171..6801e56f21bb 100644 --- a/packages/material_ui/temporarily_disabled_tests/animated_icons_test.dart +++ b/packages/material_ui/test/animated_icons_test.dart @@ -2,17 +2,15 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -@Skip( - 'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.', -) @Tags(['reduced-test-set']) library; import 'dart:math' as math show pi; -import 'package:material_ui/material_ui.dart'; import 'package:flutter_test/flutter_test.dart'; -import '../widgets/semantics_tester.dart'; +import 'package:material_ui/material_ui.dart'; + +import 'semantics_tester.dart'; class MockCanvas extends Fake implements Canvas { late Path capturedPath; diff --git a/packages/material_ui/temporarily_disabled_tests/autocomplete_test.dart b/packages/material_ui/test/autocomplete_test.dart similarity index 99% rename from packages/material_ui/temporarily_disabled_tests/autocomplete_test.dart rename to packages/material_ui/test/autocomplete_test.dart index a5e912cda0aa..45e403a2e31c 100644 --- a/packages/material_ui/temporarily_disabled_tests/autocomplete_test.dart +++ b/packages/material_ui/test/autocomplete_test.dart @@ -2,14 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -@Skip( - 'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.', -) -import 'package:material_ui/material_ui.dart'; import 'package:flutter/services.dart'; import 'package:flutter_test/flutter_test.dart'; +import 'package:material_ui/material_ui.dart'; -import '../widgets/semantics_tester.dart'; +import 'semantics_tester.dart'; class User { const User({required this.email, required this.name});