Skip to content

Commit

Permalink
doing too much Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Oct 30, 2020
1 parent b01ad8e commit c2e4f47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/tests/compiler_api_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Deno.test({
});
assert(diagnostics == null);
assert(actual);
let keys = Object.keys(actual).sort();
const keys = Object.keys(actual).sort();
assert(keys[0].endsWith("/bar.ts.js"));
assert(keys[1].endsWith("/bar.ts.js.map"));
assert(keys[2].endsWith("/foo.ts.js"));
Expand Down Expand Up @@ -50,9 +50,9 @@ Deno.test({
);
assert(diagnostics == null);
assert(actual);
let keys = Object.keys(actual);
const keys = Object.keys(actual);
assertEquals(keys.length, 1);
let key = keys[0];
const key = keys[0];
assert(key.endsWith("/foo.ts.js"));
assert(actual[key].startsWith("define("));
},
Expand Down

0 comments on commit c2e4f47

Please sign in to comment.