We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3384e8d commit 25edea3Copy full SHA for 25edea3
w3/python/core/fundamental_interface/Node_test.py
@@ -124,12 +124,13 @@ def testSetter_Raises_Exception(self):
124
parent_node = _create_element_node(document)
125
child_node = _create_element_node(document)
126
try:
127
- child_node.parent_node = parent_node
+ child_node.parent_node = parent_node # type: ignore
128
except:
129
self.assertNotEqual(child_node.parent_node, parent_node)
130
else:
131
self.fail()
132
133
+
134
class Test_InsertBefore(unittest.TestCase):
135
def test_WithoutRefNode(self):
136
document = _create_document_node()
@@ -233,7 +234,6 @@ def test_Raises_NOT_FOUND_ERR(self):
233
234
235
236
-
237
class Test_AppendChild(unittest.TestCase):
238
def test_AppendNewChild(self):
239
0 commit comments