Misnamed test

This commit is contained in:
Fredrik Adelöw
2020-05-19 13:52:38 +02:00
parent 3c89ba0456
commit 55b94dbd54
@@ -170,7 +170,7 @@ describe('CommonValidatorFunctions', () => {
['a_b', 'ab'],
[`${'a'.repeat(6000)}`, `${'a'.repeat(6000)}`],
['_:;>!"#€', ''],
])('isValidDnsLabel', (value, result) => {
])('normalizeToLowercaseAlphanum', (value, result) => {
expect(CommonValidatorFunctions.normalizeToLowercaseAlphanum(value)).toBe(
result,
);