Skip to content

Commit eb1a32d

Browse files
Fix Pipeline
1 parent f838959 commit eb1a32d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/test-message-validation.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,9 +364,13 @@ describe('Message Validation Tests', function () {
364364

365365
describe('Publisher validation integration', function () {
366366
let node;
367+
let testCounter = 0;
367368

368369
beforeEach(function () {
369-
node = new rclnodejs.Node('test_validation_node');
370+
testCounter++;
371+
node = new rclnodejs.Node(
372+
`test_validation_node_${testCounter}_${Date.now()}`
373+
);
370374
});
371375

372376
afterEach(function () {

0 commit comments

Comments
 (0)