Skip to content

Commit

Permalink
Address lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Jul 3, 2020
1 parent a3fd9a8 commit eaaa1f8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/ses-integration-test/test/sanity.test.js
Expand Up @@ -7,10 +7,6 @@ test("sanity", t => {
t.equal(lockdown(), true, "lockdown runs successfully");
const c = new Compartment({ abc: 456 });
t.equal(c.evaluate("123"), 123, "simple evaluate succeeds");
t.equal(
c.evaluate("abc"),
456,
"endowment succeeds"
);
t.equal(c.evaluate("abc"), 456, "endowment succeeds");
t.end();
});

0 comments on commit eaaa1f8

Please sign in to comment.