Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manish.sinha@xamarin.com>2015-07-17 21:38:15 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-07-17 21:38:45 +0300
commit9490eb4e74ccc634b213ef3a147443ff437b5c12 (patch)
tree4e15982355fbfb31de4cdfea25a12c9baff62786 /main/tests/UserInterfaceTests/Controllers
parent3cb7a035200ec098061edf682ecdcfab2c9c254e (diff)
[UITests] Fix SolutionExplorerController for fetching exactly solution and project
Diffstat (limited to 'main/tests/UserInterfaceTests/Controllers')
-rw-r--r--main/tests/UserInterfaceTests/Controllers/SolutionExplorerController.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/tests/UserInterfaceTests/Controllers/SolutionExplorerController.cs b/main/tests/UserInterfaceTests/Controllers/SolutionExplorerController.cs
index 0afd044380..a799472262 100644
--- a/main/tests/UserInterfaceTests/Controllers/SolutionExplorerController.cs
+++ b/main/tests/UserInterfaceTests/Controllers/SolutionExplorerController.cs
@@ -39,12 +39,12 @@ namespace UserInterfaceTests
public static Func<AppQuery, AppQuery> GetSolutionQuery (string solutionLabel)
{
- return c => topLevel (c).Children().Property ("Label", solutionLabel).Index (0);
+ return c => topLevel (c).Children (false).Index (0).Property ("Label", solutionLabel);
}
public static Func<AppQuery, AppQuery> GetProjectQuery (string solutionLabel, string projectLabel)
{
- return c => topLevel (c).Children().Property ("Label", solutionLabel).Children ().Property ("Label", projectLabel).Index (0);
+ return c => topLevel (c).Children (false).Index (0).Property ("Label", solutionLabel).Children (false).Property ("Label", projectLabel).Index (0);
}
}
}