소스 검색

Fix UnescapedPathString test

ManlyMarco 5 년 전
부모
커밋
a34d0c6528
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  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());