Skip to content

Commit c9c2864

Browse files
committed
RECS0103: Remove the redundant size indicator
[ci skip]
1 parent af16770 commit c9c2864

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ICSharpCode.SharpZipLib.Tests/Tar/TarTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ public void Checksum()
365365
var ms3 = new MemoryStream();
366366
ms3.Write(ms.GetBuffer(), 0, ms.GetBuffer().Length);
367367
ms3.Seek(0, SeekOrigin.Begin);
368-
ms3.Write(new byte[1] { 34 }, 0, 1);
368+
ms3.Write(new byte[] { 34 }, 0, 1);
369369
ms3.Seek(0, SeekOrigin.Begin);
370370

371371
using (TarInputStream tarIn = new TarInputStream(ms3))

0 commit comments

Comments
 (0)