From f6459d45ab3b48ff446e399c8513e645eaf04e4e Mon Sep 17 00:00:00 2001 From: mikaello Date: Thu, 15 Jun 2017 23:31:13 +0200 Subject: [PATCH] Typo in test description --- test/no-validation-tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/no-validation-tests.js b/test/no-validation-tests.js index 3b8be4c..203c613 100644 --- a/test/no-validation-tests.js +++ b/test/no-validation-tests.js @@ -33,7 +33,7 @@ buster.testCase("Organization number validation", { }); buster.testCase("Birth number validation", { - "should not accept organization numbers of less than 11 digits": function () { + "should not accept birth numbers of less than 11 digits": function () { refute(validation.birthNumber('2104986822')); }, "should not accept invalid birth numbers": function () { @@ -57,4 +57,4 @@ buster.testCase("KID number validation", { "should accept short kid numbers": function () { assert(validation.kidNumber(91)); } -}); \ No newline at end of file +});