From b0e0d844f55db2ba4fc9f2e6343ea7ab713b1aa4 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Mon, 31 Oct 2022 10:18:43 -0700 Subject: [PATCH] [flutter_markdown] remove a test about preserving HTML entities (#2757) --- packages/flutter_markdown/test/html_test.dart | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages/flutter_markdown/test/html_test.dart b/packages/flutter_markdown/test/html_test.dart index 11525d5e1b0d..0d3a38691d68 100644 --- a/packages/flutter_markdown/test/html_test.dart +++ b/packages/flutter_markdown/test/html_test.dart @@ -51,18 +51,5 @@ void defineTests() { expectTextStrings(tester.allWidgets, ['<']); }, ); - - testWidgets( - "doesn't convert existing HTML entities when parsing", - (WidgetTester tester) async { - await tester.pumpWidget( - boilerplate( - const Markdown(data: '& © < {'), - ), - ); - expectTextStrings( - tester.allWidgets, ['& © < {']); - }, - ); }); }