We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb0ba0 commit 030edeeCopy full SHA for 030edee
test/over_react/component_declaration/component_base_test.dart
@@ -92,7 +92,7 @@ main() {
92
test('a single child is passed in', () {
93
var child = 'Only child';
94
var renderedNode = renderAndGetDom(Dom.div()(child));
95
- List<Text> children = renderedNode.childNodes.where((node) => node.nodeType != Node.COMMENT_NODE).toList();
+ List<Text> children = renderedNode.childNodes.where((node) => node.nodeType != Node.COMMENT_NODE).toList();
96
97
expect(children.length, equals(1));
98
expect(children[0].data, equals(child));
0 commit comments