Skip to content

Commit 3832868

Browse files
Filmbostock
andauthored
fix date in test (#937)
* fix date in test Co-authored-by: Mike Bostock <[email protected]>
1 parent c4ceccb commit 3832868

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/plots/yearly-requests-dot.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import * as Plot from "@observablehq/plot";
33

44
export default async function() {
55
const requests = [
6-
[new Date("2002-1-01"), 9],
7-
[new Date("2003-1-01"), 17],
8-
[new Date("2005-1-01"), 5]
6+
[new Date("2002-01-01"), 9],
7+
[new Date("2003-01-01"), 17],
8+
[new Date("2005-01-01"), 5]
99
];
1010
return Plot.plot({
1111
label: null,

0 commit comments

Comments
 (0)