From a7342018087892f723ff8d9998420254efd83ae6 Mon Sep 17 00:00:00 2001 From: Lukasz Czerniawski Date: Fri, 2 Aug 2024 22:26:20 +0200 Subject: [PATCH] Remove ctime from fstat test --- tests/unit/stat_test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/unit/stat_test.ts b/tests/unit/stat_test.ts index e41dcc829a..294127bf85 100644 --- a/tests/unit/stat_test.ts +++ b/tests/unit/stat_test.ts @@ -21,7 +21,6 @@ Deno.test({ permissions: { read: true } }, function fstatSyncSuccess() { assert(fileInfo.mtime); // The `birthtime` field is not available on Linux before kernel version 4.11. assert(fileInfo.birthtime || Deno.build.os === "linux"); - assert(fileInfo.ctime); }); Deno.test({ permissions: { read: true } }, async function fstatSuccess() { @@ -35,7 +34,6 @@ Deno.test({ permissions: { read: true } }, async function fstatSuccess() { assert(fileInfo.mtime); // The `birthtime` field is not available on Linux before kernel version 4.11. assert(fileInfo.birthtime || Deno.build.os === "linux"); - assert(fileInfo.ctime); }); Deno.test(