Skip to content

Commit

Permalink
Redis Store: removed unneeded module ('assert')
Browse files Browse the repository at this point in the history
It's not used anywhere in the file and the test file (test/stores.redis.test.js) uses the 'should' module.
I'm assuming this is a leftover.
  • Loading branch information
itaisatati committed Aug 22, 2012
1 parent ab2a0b6 commit 4a68908
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/stores/redis.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/*!
* socket.io-node
* Copyright(c) 2011 LearnBoost <dev@learnboost.com>
Expand All @@ -10,8 +9,7 @@
*/

var crypto = require('crypto')
, Store = require('../store')
, assert = require('assert');
, Store = require('../store');

/**
* Exports the constructor.
Expand Down

0 comments on commit 4a68908

Please sign in to comment.