From 180d4fb916e875497ecbe22ccbdf80a48230e161 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 24 Jun 2026 09:48:40 +0200 Subject: [PATCH] [tests] Fix expected value for 'RunCommand' after #25764. --- tests/dotnet/UnitTests/MlaunchTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dotnet/UnitTests/MlaunchTest.cs b/tests/dotnet/UnitTests/MlaunchTest.cs index f12b51d6649..6e753393f1c 100644 --- a/tests/dotnet/UnitTests/MlaunchTest.cs +++ b/tests/dotnet/UnitTests/MlaunchTest.cs @@ -98,7 +98,7 @@ public void GetMlaunchRunArguments (ApplePlatform platform, string runtimeIdenti if (!BinLog.TryFindPropertyValue (rv.BinLogPath, "RunCommand", out var runCommand)) Assert.Fail ("Could not find the property 'RunCommand' in the binlog."); - Assert.That (runCommand, Is.EqualTo ($"'{mlaunchPath}'"), "Run command"); + Assert.That (runCommand, Is.EqualTo ($"{mlaunchPath}"), "Run command"); var expectedArguments = new StringBuilder (); var isSim = runtimeIdentifiers.Contains ("simulator");