From 69b48401c91ed50ae6a64e155729808c662c7d49 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Sat, 11 Mar 2017 15:21:15 +0100 Subject: [PATCH] [System.Windows.Forms] Fixes test build failure --- mcs/class/System.Windows.Forms/Test/System.Resources/ResXFileRefTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcs/class/System.Windows.Forms/Test/System.Resources/ResXFileRefTest.cs b/mcs/class/System.Windows.Forms/Test/System.Resources/ResXFileRefTest.cs index 83aef31a3b5..5ea7baaaafd 100644 --- a/mcs/class/System.Windows.Forms/Test/System.Resources/ResXFileRefTest.cs +++ b/mcs/class/System.Windows.Forms/Test/System.Resources/ResXFileRefTest.cs @@ -241,7 +241,7 @@ namespace MonoTests.System.Resources string filePath = Path.Combine (_tempDirectory, fileName); File.WriteAllText (filePath, fileContents); - filePath = _tempDirectory + "\\.\\" + filename; + filePath = _tempDirectory + "\\.\\" + fileName; string fileRef = filePath + ";" + typeof (string).AssemblyQualifiedName; string result = _converter.ConvertFrom (fileRef) as string; -- 2.11.4.GIT