diff --git a/tests/mtouch/MTouch.cs b/tests/mtouch/MTouch.cs index df7c045fa0cc..1fe87b9b98b6 100644 --- a/tests/mtouch/MTouch.cs +++ b/tests/mtouch/MTouch.cs @@ -132,7 +132,7 @@ public enum Profile { Unified, TVOS, WatchOS } public void SymbolicationData (Target target, Config configuration, PackageMdb package_mdb, MSym msym, bool has_mdb, bool has_msym, string extra_mtouch_args) { using (var mtouch = new MTouchTool ()) { - mtouch.Profile = Profile.iOS; + mtouch.Profile = Profile.Unified; mtouch.CreateTemporaryApp (hasPlist: true); switch (package_mdb) { case PackageMdb.WithMdb: @@ -180,7 +180,7 @@ public void SymbolicationData (Target target, Config configuration, PackageMdb p manifest.Load (Path.Combine (msymDir, "manifest.xml")); Assert.AreEqual ("com.xamarin.testApp", manifest.SelectSingleNode ("/mono-debug/app-id").InnerText, "app-id"); } else { - DirectoryAssert.DoesNotExist (msymDir, "mSYM found when not expected"); + Assert.IsFalse (Directory.Exists (msymDir), "mSYM found when not expected"); } } } @@ -2090,7 +2090,7 @@ public void MT2015 () public void AutoLinkWithSqlite () { using (var mtouch = new MTouchTool ()) { - mtouch.Profile = Profile.iOS; + mtouch.Profile = Profile.Unified; mtouch.CreateTemporaryApp (code: @" using System.Runtime.InteropServices; using Foundation;