Skip to content

Commit a92f92a

Browse files
committed
Comment out temp test
1 parent d7b3c4d commit a92f92a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/IniFile.Tests/IniFileTests.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,15 @@ public void Can_read_multiline_property_value(string iniContent)
281281
ini["Section"]["Multiline"].ToString().ShouldBe(expectedValue);
282282
}
283283

284-
[Fact]
285-
public void Can_load_from_file()
286-
{
287-
var ini = new Ini(@"D:\Temp\Data.ini");
288-
string ip = ini["tcp"]?["ip"];
289-
string missing = ini["tcp2"]?["missing"];
284+
//[Fact]
285+
//public void Can_load_from_file()
286+
//{
287+
// var ini = new Ini(@"D:\Temp\Data.ini");
288+
// string ip = ini["tcp"]?["ip"];
289+
// string missing = ini["tcp2"]?["missing"];
290290

291-
ip.ShouldNotBeNull();
292-
missing.ShouldBeNull();
293-
}
291+
// ip.ShouldNotBeNull();
292+
// missing.ShouldBeNull();
293+
//}
294294
}
295295
}

0 commit comments

Comments
 (0)