Fix TAR test name

This commit is contained in:
Matt Nadareski
2024-12-02 11:56:28 -05:00
parent 254d2877b5
commit 8c0a8f6856

View File

@@ -30,7 +30,7 @@ namespace BinaryObjectScanner.Test.FileType
}
[Fact]
public void ExtractStream_Empty_False()
public void ExtractStream_Empty_True()
{
Stream? stream = new MemoryStream();
string file = string.Empty;
@@ -39,7 +39,7 @@ namespace BinaryObjectScanner.Test.FileType
bool actual = extractable.Extract(stream, file, outDir, includeDebug: false);
// TODO: Unexpected result -- Empty file recognized as valid
// Unexpected result -- Empty file recognized as valid in SharpCompress
Assert.True(actual);
}
}