We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af16770 commit c9c2864Copy full SHA for c9c2864
1 file changed
ICSharpCode.SharpZipLib.Tests/Tar/TarTests.cs
@@ -365,7 +365,7 @@ public void Checksum()
365
var ms3 = new MemoryStream();
366
ms3.Write(ms.GetBuffer(), 0, ms.GetBuffer().Length);
367
ms3.Seek(0, SeekOrigin.Begin);
368
- ms3.Write(new byte[1] { 34 }, 0, 1);
+ ms3.Write(new byte[] { 34 }, 0, 1);
369
370
371
using (TarInputStream tarIn = new TarInputStream(ms3))
0 commit comments