Skip to content

Commit 7a86dd6

Browse files
committed
Correct unit test
1 parent 5cb61f6 commit 7a86dd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test-timer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe('rclnodejs Timer class testing', function () {
5959
assert.deepEqual(timer.period, TIMER_INTERVAL);
6060
assert.throws(
6161
() => {
62-
timer.period = TIMER_INTERVAL * 2;
62+
timer.period = TIMER_INTERVAL * 2n;
6363
},
6464
function (err) {
6565
if (

0 commit comments

Comments
 (0)