From 6d22d3d932d85e14daca70bba081ebc84426515a Mon Sep 17 00:00:00 2001 From: Sam Verschueren Date: Sun, 3 Dec 2017 19:45:24 +0100 Subject: [PATCH] Fix null test title --- source/test/null.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/test/null.ts b/source/test/null.ts index eb0cc01..979ae22 100644 --- a/source/test/null.ts +++ b/source/test/null.ts @@ -1,7 +1,7 @@ import test from 'ava'; import m from '..'; -test('undefined', t => { +test('null', t => { const x = null; t.notThrows(() => m(null, m.null));