Skip to content

Commit

Permalink
[DSO-9795] fix pointcloud.destroy check return values.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoming0 committed Jul 10, 2018
1 parent 2a0297c commit c46181a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wrappers/nodejs/test/test-pointcloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ describe('Pointcloud test', function() {
pointcloud.destroy();
});
setTimeout(() => {
assert.equal(pointcloud, undefined);
assert.equal(pointcloud.pointsFrame, undefined);
assert.equal(pointcloud.cxxPointCloud, undefined);
}, 100);
});

Expand Down

0 comments on commit c46181a

Please sign in to comment.