Skip to content

Commit cc2d76a

Browse files
committed
fix(tests): Fix dumpView test util for changed modules API.
1 parent 5a9ba20 commit cc2d76a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/app/tests/test-utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {Device} from "platform";
44

55
function getChildren(view: View): Array<View> {
66
var children: Array<View> = [];
7-
(<any>view)._eachChildView((child) => {
7+
(<any>view).eachChildView((child) => {
88
children.push(child);
99
return true;
1010
});
@@ -41,4 +41,4 @@ export function createDevice(os: string): Device {
4141
manufacturer: "tester",
4242
model: "test device"
4343
};
44-
}
44+
}

0 commit comments

Comments
 (0)