Skip to content

Commit e9ceb86

Browse files
authored
Merge pull request #19 from jreynolds67/main
Update variables.spec.js
2 parents 96b79e2 + f99687e commit e9ceb86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/variables.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ const variables = require("../variables");
22

33
describe("variables", () => {
44
it("rounds correctly", () => {
5-
checkVariableValues({ watch: 1500 }, "0", "00", "01", "500");
5+
checkVariableValues({ watch: 1500 }, "00", "00", "01", "500");
66
});
77

88
it("pads correctly", () => {
9-
checkVariableValues({ watch: 42 }, "0", "00", "00", "042");
9+
checkVariableValues({ watch: 42 }, "00", "00", "00", "042");
1010
});
1111
});
1212

0 commit comments

Comments
 (0)