diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 2bb6919..6945af0 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -2,7 +2,7 @@ This handcrafted artisinal software is brought to you by: -|
msimerson (8)|
lnedry (1)| -| :---: | :---: | +|
msimerson (8) |
lnedry (1) | +| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | this file is maintained by [.release](https://github.com/msimerson/.release) diff --git a/test/dns-list.js b/test/dns-list.js index 1ccf386..7eb8e04 100644 --- a/test/dns-list.js +++ b/test/dns-list.js @@ -39,31 +39,31 @@ describe('dns-list', function () { describe('lookup', function () { it('Spamcop, test IPv4', async function () { - this.timeout=4000 + this.timeout = 4000 const a = await this.plugin.lookup('127.0.0.2', 'bl.spamcop.net') assert.deepStrictEqual(['127.0.0.2'], a) }) it('Spamcop, unlisted IPv6', async function () { - this.timeout=4000 + this.timeout = 4000 const r = await this.plugin.lookup('::1', 'bl.spamcop.net') assert.deepStrictEqual(undefined, r) }) it('b.barracudacentral.org, unlisted IPv6', async function () { - this.timeout=4000 + this.timeout = 4000 const r = await this.plugin.lookup('::1', 'b.barracudacentral.org') assert.deepStrictEqual(undefined, r) }) it('Spamcop, unlisted IPv4', async function () { - this.timeout=4000 + this.timeout = 4000 const a = await this.plugin.lookup('127.0.0.1', 'bl.spamcop.net') assert.deepStrictEqual(undefined, a) }) it('CBL', async function () { - this.timeout=4000 + this.timeout = 4000 const a = await this.plugin.lookup('127.0.0.2', 'xbl.spamhaus.org') assert.deepStrictEqual(a, ['127.0.0.4']) })