Skip to content

Commit

Permalink
Remove Duplicate Test Case - SLMessage (#80)
Browse files Browse the repository at this point in the history
Removed a duplicate test case which is running twice
  • Loading branch information
jagadeesh-k-2802 authored Jul 20, 2024
1 parent ed8c96d commit 37dedac
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/slmessage.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,6 @@ describe('SLMessage utilities', function() {
assert.strictEqual(decodedMsg.action, 0);
assert.strictEqual(decodedMsg.dataLength, 0);
}

{
let msg = new SLMessage.Outbound();
msg.createBaseMessage();
let decodedMsg = new SLMessage.Inbound();
decodedMsg.readFromBuffer(msg.toBuffer());
assert.strictEqual(decodedMsg.senderId, 0);
assert.strictEqual(decodedMsg.action, 0);
assert.strictEqual(decodedMsg.dataLength, 0);
}
});

it('encodes and decodes SLStrings', function() {
Expand Down

0 comments on commit 37dedac

Please sign in to comment.