From 7d95c5c062c7d836bab912e95587bf7fa52326c4 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 5 Sep 2024 21:23:37 +1000 Subject: BREAKING(fs): remove `Deno.funlock[Sync]()` (#25442) Towards #22079 --------- Signed-off-by: Asher Gomez --- tests/specs/future/runtime_api/main.js | 2 -- tests/specs/future/runtime_api/main.out | 2 -- 2 files changed, 4 deletions(-) (limited to 'tests/specs/future/runtime_api') diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js index 1a0275e53..d19e68f1b 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -4,8 +4,6 @@ console.log( "Deno.FsFile.prototype.rid is", Deno.openSync(import.meta.filename).rid, ); -console.log("Deno.funlock is", Deno.funlock); -console.log("Deno.funlockSync is", Deno.funlockSync); // TCP // Since these tests may run in parallel, ensure this port is unique to this file diff --git a/tests/specs/future/runtime_api/main.out b/tests/specs/future/runtime_api/main.out index e04fce76a..beaeecd93 100644 --- a/tests/specs/future/runtime_api/main.out +++ b/tests/specs/future/runtime_api/main.out @@ -1,8 +1,6 @@ window is undefined Deno.Buffer is undefined Deno.FsFile.prototype.rid is undefined -Deno.funlock is undefined -Deno.funlockSync is undefined Deno.Listener.prototype.rid is undefined Deno.Conn.prototype.rid is undefined Deno.UnixConn.prototype.rid is undefined -- cgit v1.2.3