diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/libdeno_test.js (renamed from js/mock_runtime.js) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/mock_runtime.js b/js/libdeno_test.js index 34f78479e..10905494c 100644 --- a/js/mock_runtime.js +++ b/js/libdeno_test.js @@ -1,12 +1,12 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. // A simple runtime that doesn't involve typescript or protobufs to test -// libdeno. Invoked by mock_runtime_test.cc +// libdeno. Invoked by libdeno_test.cc const global = this; function assert(cond) { - if (!cond) throw Error("mock_runtime.js assert failed"); + if (!cond) throw Error("libdeno_test.js assert failed"); } global.CanCallFunction = () => { |