From a903469706cb00474117efa538692a96d1dbea71 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 10 Jul 2018 15:58:46 +0700 Subject: [PATCH] Update test.ts --- source/tests/test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/tests/test.ts b/source/tests/test.ts index ca4372e..2c19c44 100644 --- a/source/tests/test.ts +++ b/source/tests/test.ts @@ -536,9 +536,7 @@ test('is.directInstanceOf', t => { test('is.urlInstance', t => { const url = new URL('https://www.example.com'); - t.true(m.urlInstance(url)); - t.false(m.urlInstance({})); t.false(m.urlInstance(undefined)); t.false(m.urlInstance(null));