Skip to content

Commit 1d8fa45

Browse files
authored
tests: fix windows text
1 parent aca53de commit 1d8fa45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/node_redis.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ describe('The node_redis client', function () {
361361
it('send_command with callback as args', function (done) {
362362
client.send_command('abcdef', function (err, res) {
363363
if (process.platform === 'win32') {
364-
assert.strictEqual(err.message, 'ERR unknown command `abcdef`');
364+
assert.strictEqual(err.message, "ERR unknown command 'abcdef'");
365365
} else {
366366
assert.strictEqual(err.message, 'ERR unknown command `abcdef`, with args beginning with: ');
367367
}

0 commit comments

Comments
 (0)