summaryrefslogtreecommitdiff
path: root/archive/tar_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'archive/tar_test.ts')
-rw-r--r--archive/tar_test.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/archive/tar_test.ts b/archive/tar_test.ts
index 951879277..474e1e2d3 100644
--- a/archive/tar_test.ts
+++ b/archive/tar_test.ts
@@ -34,7 +34,10 @@ test(async function createTarArchive(): Promise<void> {
const writer = new Deno.Buffer(),
wrote = await Deno.copy(writer, tar.getReader());
- // 3072 = 512 (header) + 512 (content) + 512 (header) + 512 (content) + 1024 (footer)
+ /**
+ * 3072 = 512 (header) + 512 (content) + 512 (header) + 512 (content)
+ * + 1024 (footer)
+ */
assertEquals(wrote, 3072);
});