From 726b9c80f6cfed1d677b602209860b076f450d8a Mon Sep 17 00:00:00 2001 From: Kenneth Skovhede Date: Sat, 11 Mar 2017 01:05:58 +0100 Subject: [PATCH] Fixed compiling the unittest --- test/SharpCompress.Test/Zip/Zip64Tests.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/SharpCompress.Test/Zip/Zip64Tests.cs b/test/SharpCompress.Test/Zip/Zip64Tests.cs index fb39468d..4a4bf639 100644 --- a/test/SharpCompress.Test/Zip/Zip64Tests.cs +++ b/test/SharpCompress.Test/Zip/Zip64Tests.cs @@ -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()