Skip to content

Commit

Permalink
test: fix describe names
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Nov 5, 2024
1 parent 428d063 commit dcb956d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/dns-zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import util from 'util'

const execFile = util.promisify(child.execFile)

describe('nt-zone.js', function () {
describe('dns-zone.js', function () {
it('prints help message', async function () {
const binPath = path.resolve('bin', 'dns-zone.js')
const args = [ binPath, '-h' ]
Expand Down
2 changes: 1 addition & 1 deletion test/zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const testSOA = new RR.SOA({
minimum: 2560,
})

describe('dns-zone', function () {
describe('zone', function () {

it('creates a zone object', function () {
const zone = new ZONE({ origin: 'example.com' })
Expand Down

0 comments on commit dcb956d

Please sign in to comment.