Skip to content
Snippets Groups Projects
Commit 2f378793 authored by Daniel Ehrenberg's avatar Daniel Ehrenberg
Browse files

Fix typo from review

parent 99fa2a6c
No related branches found
No related tags found
No related merge requests found
......@@ -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);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment