Fix typo from review

This commit is contained in:
Daniel Ehrenberg 2017-06-15 06:25:17 +02:00
parent 99fa2a6c9e
commit 2f3787936b

View File

@ -15,5 +15,5 @@ let match = dateRegExp.exec(new Date().toDateString());
assert.notSameValue(null, match);
// Years are padded to the left with zeroes
match = stringRegExp.exec(new Date('0020-01-01T00:00:00Z').toDateString());
match = dateRegExp.exec(new Date('0020-01-01T00:00:00Z').toDateString());
assert.notSameValue(null, match);