1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

test: Fix typo in assertEquals message

This commit is contained in:
andy addington
2019-01-17 06:56:41 -08:00
committed by Ruben Bridgewater
parent bdc7356b37
commit 06635b77cc

View File

@@ -209,7 +209,7 @@ describe('createClient options', function () {
}, undefined); }, undefined);
throw new Error('failed'); throw new Error('failed');
} catch (err) { } catch (err) {
assert.strictEqual(err.message, 'To many arguments passed to createClient. Please only pass the options object'); assert.strictEqual(err.message, 'Too many arguments passed to createClient. Please only pass the options object');
} }
}); });