Skip to content

Commit 030edee

Browse files
Correct indentation
1 parent 8fb0ba0 commit 030edee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/over_react/component_declaration/component_base_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ main() {
9292
test('a single child is passed in', () {
9393
var child = 'Only child';
9494
var renderedNode = renderAndGetDom(Dom.div()(child));
95-
List<Text> children = renderedNode.childNodes.where((node) => node.nodeType != Node.COMMENT_NODE).toList();
95+
List<Text> children = renderedNode.childNodes.where((node) => node.nodeType != Node.COMMENT_NODE).toList();
9696

9797
expect(children.length, equals(1));
9898
expect(children[0].data, equals(child));

0 commit comments

Comments
 (0)