Fixed compiling the unittest

This commit is contained in:
Kenneth Skovhede
2017-03-11 01:05:58 +01:00
parent 2894711c51
commit 726b9c80f6

View File

@@ -13,8 +13,13 @@ namespace SharpCompress.Test
{
public class Zip64Tests : WriterTests
{
// 4GiB + 1
const long FOUR_GB_LIMIT = ((long)uint.MaxValue) + 1;
public Zip64Tests()
: base(ArchiveType.Zip)
{
}
// 4GiB + 1
const long FOUR_GB_LIMIT = ((long)uint.MaxValue) + 1;
[Fact]
public void Zip64_Single_Large_File()