diff --git a/packages/flutter/test/painting/text_style_test.dart b/packages/flutter/test/painting/text_style_test.dart index ec2875c0de..d3722e257c 100644 --- a/packages/flutter/test/painting/text_style_test.dart +++ b/packages/flutter/test/painting/text_style_test.dart @@ -4,7 +4,6 @@ import 'dart:ui' as ui show TextStyle, ParagraphStyle, FontFeature, Shadow; -import 'package:flutter/foundation.dart'; import 'package:flutter/painting.dart'; import '../flutter_test_alternative.dart'; @@ -262,7 +261,7 @@ void main() { const TextStyle b = TextStyle(fontFamilyFallback: ['Noto'], shadows: [ui.Shadow()], fontFeatures: [ui.FontFeature('abcd')]); expect(a.hashCode, a.hashCode); expect(a.hashCode, isNot(equals(b.hashCode))); - }, skip: kIsWeb); + }); test('TextStyle foreground and color combos', () { const Color red = Color.fromARGB(255, 255, 0, 0);