Skip to content

Commit ae43d90

Browse files
committed
attempt to fix test_non_html_tag_behavior
1 parent b00bfe1 commit ae43d90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,10 +260,10 @@ def make_links_blue(node):
260260

261261

262262
def test_non_html_tag_behavior():
263-
source = "<my-tag data-x=something><my-other-tag key=a-key /></my-tag>"
263+
source = "<mytag data-x=something><my-other-tag key=a-key /></mytag>"
264264

265265
expected = {
266-
"tagName": "my-tag",
266+
"tagName": "mytag",
267267
"attributes": {"data-x": "something"},
268268
"children": [
269269
{"tagName": "my-other-tag", "attributes": {"key": "a-key"}, "key": "a-key"},

0 commit comments

Comments
 (0)