Skip to content

Commit

Permalink
fix a minor problem
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihozer0 committed Dec 10, 2022
1 parent dce785e commit 5d10b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/connection/ClientMessageReaderTest.js
Expand Up @@ -185,7 +185,7 @@ describe('ClientMessageReaderTest', function () {

const messageRead = reader.read();
expect(messageRead).to.be.not.null;
expect(messageRead.hasNextFrame()).to.be.null;
expect(messageRead.hasNextFrame()).to.be.true;

const frameRead = messageRead.nextFrame();
expect(frameRead.content).to.deep.equal(frame.content);
Expand Down

0 comments on commit 5d10b8c

Please sign in to comment.