From 42f535ae40d2ca9292fcdd209ee69cb26ef16382 Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 10 Oct 2015 13:58:58 -0400 Subject: [PATCH] Fix UI test --- FakeDemo/UITests/Tests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FakeDemo/UITests/Tests.cs b/FakeDemo/UITests/Tests.cs index 58542fb..5fed299 100644 --- a/FakeDemo/UITests/Tests.cs +++ b/FakeDemo/UITests/Tests.cs @@ -28,7 +28,7 @@ public void BeforeEachTest() [Test] public void WelcomeTextIsDisplayed() { - AppResult[] results = app.WaitForElement(c => c.Marked("Welcome to Xamarin Forms!")); + AppResult[] results = app.WaitForElement(c => c.Marked("Built using FAKE!")); Assert.IsTrue(results.Any()); }