From 0ab547efb018b2cadc339fd1cfabdf38ce67d35c Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 25 Aug 2020 13:11:43 +0200 Subject: [PATCH] [tests] Update the MT0113_linker test asserting an error message after the message changed. This regressed here: d7ab8476970fbbd11b659c1db4a69036f9c38e5f Fixes this failure: Xamarin.MTouch.MT0113_linker: The error 'MT0113: Native code sharing has been disabled for the extension 'testServiceExtension' because the managed linker settings are different between the container app (None) and the extension (All).' was not found in the output: Message #1 did not match: actual: 'Native code sharing has been disabled for the extension 'testServiceExtension' because the managed linker settings are different between the container app (None) and the extension (Full).' expected: 'Native code sharing has been disabled for the extension 'testServiceExtension' because the managed linker settings are different between the container app (None) and the extension (All).' --- tests/mtouch/MTouch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mtouch/MTouch.cs b/tests/mtouch/MTouch.cs index f0255f39fb95..bfb4cbe2b214 100644 --- a/tests/mtouch/MTouch.cs +++ b/tests/mtouch/MTouch.cs @@ -1446,7 +1446,7 @@ public void MT0113_linker () app.Linker = MTouchLinker.DontLink; app.WarnAsError = new int [] { 113 }; app.AssertExecuteFailure (MTouchAction.BuildDev, "build app"); - app.AssertError (113, "Native code sharing has been disabled for the extension 'testServiceExtension' because the managed linker settings are different between the container app (None) and the extension (All)."); + app.AssertError (113, "Native code sharing has been disabled for the extension 'testServiceExtension' because the managed linker settings are different between the container app (None) and the extension (Full)."); } } }