From 758461331eb87a1c8bc61b38caae6a6436830a0b Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 31 Jul 2024 17:50:26 +0100 Subject: [PATCH] Fix imports --- spec/unit/digest.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/unit/digest.spec.ts b/spec/unit/digest.spec.ts index 447fde0dce..e129cf8507 100644 --- a/spec/unit/digest.spec.ts +++ b/spec/unit/digest.spec.ts @@ -14,8 +14,8 @@ See the License for the specific language governing permissions and limitations under the License. */ -import { encodeUnpaddedBase64Url } from "../../../src"; -import { sha256 } from "../../../src/digest"; +import { encodeUnpaddedBase64Url } from "../../src"; +import { sha256 } from "../../src/digest"; describe("sha256", () => { it("should hash a string", async () => {