Skip to content

Commit 8fcdd43

Browse files
committed
fixing the test to keep using the old parser
1 parent a8f09fd commit 8fcdd43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/html_parser_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:flutter_html/flutter_html.dart';
55

66
void main() {
77
test('Checks that `parse` does not throw an exception', () {
8-
final elementList = HtmlParser(width: 42.0).parse("<b>Bold Text</b>");
8+
final elementList = HtmlOldParser(width: 42.0).parse("<b>Bold Text</b>");
99
expect(elementList, isNotNull);
1010
});
1111

0 commit comments

Comments
 (0)