Skip to content

Commit ae329ca

Browse files
Copilotjkotas
andcommitted
Remove always-true IsUsingNewPathNormalization property
Co-authored-by: jkotas <[email protected]>
1 parent be36e52 commit ae329ca

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/libraries/System.IO.Compression/tests/ZipArchive/zip_ManualAndCompatibilityTests.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ namespace System.IO.Compression.Tests
1010
{
1111
public class zip_ManualAndCompatibilityTests : ZipFileTestBase
1212
{
13-
public static bool IsUsingNewPathNormalization => true;
14-
1513
public static IEnumerable<object[]> Get_CompatibilityTests_Data()
1614
{
1715
foreach (bool async in _bools)
@@ -67,7 +65,7 @@ public static async Task CompatibilityTestsMsFiles(string withTrailing, string w
6765
/// For example, the file "aa\bb\cc\dd" in a zip created on Unix should be one file "aa\bb\cc\dd" whereas the same file
6866
/// in a zip created on Windows should be interpreted as the file "dd" underneath three subdirectories.
6967
/// </summary>
70-
[ConditionalTheory(nameof(IsUsingNewPathNormalization))]
68+
[Theory]
7169
[InlineData("backslashes_FromUnix.zip", "aa\\bb\\cc\\dd")]
7270
[InlineData("backslashes_FromWindows.zip", "dd")]
7371
[InlineData("WindowsInvalid_FromUnix.zip", "aa<b>d")]

0 commit comments

Comments
 (0)