Skip to content

Commit

Permalink
[flutter_markdown] remove a test about preserving HTML entities (flut…
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew authored Oct 31, 2022
1 parent 9bd2202 commit b0e0d84
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions packages/flutter_markdown/test/html_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,5 @@ void defineTests() {
expectTextStrings(tester.allWidgets, <String>['<']);
},
);

testWidgets(
"doesn't convert existing HTML entities when parsing",
(WidgetTester tester) async {
await tester.pumpWidget(
boilerplate(
const Markdown(data: '&amp; &copy; &#60; &#x0007B;'),
),
);
expectTextStrings(
tester.allWidgets, <String>['&amp; &copy; &#60; &#x0007B;']);
},
);
});
}

0 comments on commit b0e0d84

Please sign in to comment.