Index: pkg/third_party/html5lib/test/parser_feature_test.dart |
diff --git a/pkg/third_party/html5lib/test/parser_feature_test.dart b/pkg/third_party/html5lib/test/parser_feature_test.dart |
index 212ae053321991c7eac651b0d2d23831cae01dd8..b21480d19923cccd77c3cb02319cd378f959a3ea 100644 |
--- a/pkg/third_party/html5lib/test/parser_feature_test.dart |
+++ b/pkg/third_party/html5lib/test/parser_feature_test.dart |
@@ -11,7 +11,7 @@ main() { |
test('doctype is cloneable', () { |
var doc = parse('<!doctype HTML>'); |
DocumentType doctype = doc.nodes[0]; |
- expect(doctype.clone().toString(), '<!DOCTYPE html>'); |
+ expect(doctype.clone(false).toString(), '<!DOCTYPE html>'); |
}); |
test('line counter', () { |