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 +});