Browse Source

Fix UnescapedPathString test

ManlyMarco 4 năm trước cách đây
mục cha
commit
a34d0c6528
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      BepInExTests/Configuration/ConfigFileTests.cs

+ 1 - 2
BepInExTests/Configuration/ConfigFileTests.cs

@@ -298,6 +298,7 @@ namespace BepInEx.Configuration.Tests
 		public void UnescapedPathString()
 		{
 			var c = MakeConfig();
+			var w = c.AddSetting("Cat", "Key", "", new ConfigDescription("Test"));
 
 			var unescaped = @"D:\test\p ath";
 			foreach (string testVal in new[] { unescaped, @"D:\\test\\p ath" })
@@ -305,8 +306,6 @@ namespace BepInEx.Configuration.Tests
 				File.WriteAllText(c.ConfigFilePath, $"[Cat]\n# Test\nKey={testVal}\n");
 				c.Reload();
 
-				var w = c.AddSetting("Cat", "Key", "", new ConfigDescription("Test"));
-
 				Assert.AreEqual(unescaped, w.Value);
 
 				w.SetSerializedValue(w.GetSerializedValue());