Skip to content

Commit c2cd993

Browse files
committed
Update test_jsx_tags.py
1 parent 242da23 commit c2cd993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_jsx_tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def tagify(self):
214214
x = Foo(div(TagifiableDep(), TagifiableDep2()))
215215
# Make sure that calling render() doesn't alter the object in place and result in
216216
# output that changes from run to run.
217-
assert str(x.tagify()) == str(x.tagify())
217+
assert x.tagify() == x.tagify()
218218
assert HTMLDocument(x).render() == HTMLDocument(x).render()
219219

220220
# Make sure that the dependency (which is added to the tree when MyTag.tagify() is

0 commit comments

Comments
 (0)