diff options
Diffstat (limited to 'integration/bunjs-only-snippets/atob.test.js')
-rw-r--r-- | integration/bunjs-only-snippets/atob.test.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/integration/bunjs-only-snippets/atob.test.js b/integration/bunjs-only-snippets/atob.test.js index c146aa855..4945829e1 100644 --- a/integration/bunjs-only-snippets/atob.test.js +++ b/integration/bunjs-only-snippets/atob.test.js @@ -1,4 +1,4 @@ -import { expect, describe, it } from "bun:test"; +import { expect, it } from "bun:test"; function expectInvalidCharacters(val) { try { @@ -49,7 +49,6 @@ it("atob", () => { expectInvalidCharacters("=="); expectInvalidCharacters("==="); expectInvalidCharacters("===="); - expectInvalidCharacters("====="); }); |