From 4e45701b512d65971ee461c848164a4f8046aadd Mon Sep 17 00:00:00 2001 From: Ben Heidemann Date: Sun, 4 Apr 2021 03:26:08 +0100 Subject: [PATCH] test: update path shim test to not use broken import --- tests/spec/shims/path.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/spec/shims/path.spec.js b/tests/spec/shims/path.spec.js index 721a6d0..8753bc8 100644 --- a/tests/spec/shims/path.spec.js +++ b/tests/spec/shims/path.spec.js @@ -1,6 +1,6 @@ 'use strict'; const expect = require('chai').expect; -const path = require('../../../shims/path').default; +const path = require('../../../shims/path'); const pathActual = require('../../../src/index').path; describe('path shim', () => {