diff options
Diffstat (limited to 'test/unit/util')
-rw-r--r-- | test/unit/util/html.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/util/html.js b/test/unit/util/html.js index 9b30aeb3..b5956e67 100644 --- a/test/unit/util/html.js +++ b/test/unit/util/html.js @@ -1,9 +1,9 @@ import t from 'tap'; -import * as html from '../../../src/util/html.js'; -const {Tag, Attributes, Template} = html; +import * as html from '#html'; +import {strictlyThrows} from '#test-lib'; -import {strictlyThrows} from '../../lib/strict-match-error.js'; +const {Tag, Attributes, Template} = html; t.test(`html.tag`, t => { t.plan(14); |