Skip to content

Commit 80b1c85

Browse files
authored
Remove invalid import (#645)
* Remove invalid import. Fixes CI build error. * Fix rate node test race condition Adds 1 sec delay between Rate creation and request for rate node name info. fix missing import fix util import
1 parent 8ab6705 commit 80b1c85

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/test-rate.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ describe('rclnodejs rate test suite', function() {
7878

7979
it('rate server node naming test', async function() {
8080
const rate = node.createRate();
81+
await assertUtils.createDelay(1000);
8182
const rateTimerServerName = `_${node.name()}_rate_timer_server`;
8283
assert.ok(node.getNodeNames().includes(rateTimerServerName));
8384
});

types/parameter.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/* eslint-disable camelcase */
22

3-
import { rcl_interfaces, rclnodejs } from 'rclnodejs';
4-
53
declare module 'rclnodejs' {
64
/**
75
* The plus/minus tolerance for determining number equivalence.

0 commit comments

Comments
 (0)