Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Havvy committed Dec 23, 2013
1 parent 6b78d77 commit 929d7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/irc-socket.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe("IRC Sockets", function () {
socket.connect();
socket.end();
expect(genericsocket.write).toHaveBeenCalledWith('NICK testbot\r\n', 'utf-8');
expect(genericsocket.write).toHaveBeenCalledWith('USER testuser 8 * :realbot\r\n', 'utf-8');
expect(genericsocket.write).toHaveBeenCalledWith('USER testuser 8 * realbot\r\n', 'utf-8');
});

it('Sends Ready Events on 001', function () {
Expand Down

0 comments on commit 929d7ca

Please sign in to comment.