Skip to content

Commit

Permalink
style: improve readability of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaur committed Oct 24, 2024
1 parent 60435e5 commit 78ddde5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/headers.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test, beforeEach, afterEach } from 'node:test'
import { strict as assert } from 'node:assert'
import assert from 'node:assert/strict'
import { buildFastify, getLastLogItem } from './helper.js'

const lastLogItem = getLastLogItem('headers')
Expand Down
2 changes: 1 addition & 1 deletion test/ping.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test, beforeEach, afterEach } from 'node:test'
import { strict as assert } from 'node:assert'
import assert from 'node:assert/strict'
import { buildFastify, getLastLogItem } from './helper.js'

const lastLogItem = getLastLogItem('ping')
Expand Down

0 comments on commit 78ddde5

Please sign in to comment.