test: update path shim test to not use broken import

This commit is contained in:
Ben Heidemann 2021-04-04 03:26:08 +01:00 committed by David Humphrey
parent fe9ed6a648
commit 4e45701b51
1 changed files with 1 additions and 1 deletions

View File

@ -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', () => {