summaryrefslogtreecommitdiff
path: root/tests/specs/future/runtime_api/main.js
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-04 18:57:34 +1000
committerGitHub <noreply@github.com>2024-09-04 08:57:34 +0000
commit4c3b17b54703b455d8ae4b51354d18838c090658 (patch)
tree0ba41960ff5598db65e4cda6b86d60d958d4cb7a /tests/specs/future/runtime_api/main.js
parent7e11dbb3ac6b3622fc032f1342406603f7a2a9d6 (diff)
BREAKING(io): remove `Deno.write[Sync]()` (#25408)
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'tests/specs/future/runtime_api/main.js')
-rw-r--r--tests/specs/future/runtime_api/main.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js
index f5e17a6de..a5ae5ec25 100644
--- a/tests/specs/future/runtime_api/main.js
+++ b/tests/specs/future/runtime_api/main.js
@@ -11,8 +11,6 @@ console.log("Deno.read is", Deno.read);
console.log("Deno.readSync is", Deno.readSync);
console.log("Deno.seek is", Deno.seek);
console.log("Deno.seekSync is", Deno.seekSync);
-console.log("Deno.write is", Deno.write);
-console.log("Deno.writeSync is", Deno.writeSync);
// TCP
// Since these tests may run in parallel, ensure this port is unique to this file