diff --git a/e2e/animation/app/slide-in-effect/page.ts b/e2e/animation/app/slide-in-effect/page.ts index 8b1957ebe..4a543f639 100644 --- a/e2e/animation/app/slide-in-effect/page.ts +++ b/e2e/animation/app/slide-in-effect/page.ts @@ -1,13 +1,13 @@ import { EventData, Page } from "tns-core-modules/ui/page"; import { View } from "tns-core-modules/ui/core/view"; -import { Layout } from "tns-core-modules/ui/layouts/layout"; +import { WrapLayout } from "tns-core-modules/ui/layouts/wrap-layout"; import { Image } from "tns-core-modules/ui/image"; -let wrapLayout: Layout; +let wrapLayout: WrapLayout; export function pageLoaded(args: EventData) { const page = args.object; - wrapLayout = page.getViewById("wrapLayout"); + wrapLayout = page.getViewById("wrapLayout"); } export function onAddItem(args: EventData) {