Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dbkr committed Jul 31, 2024
1 parent 2e7fb0d commit 7584613
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/unit/digest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit 7584613

Please sign in to comment.