Skip to content

Commit

Permalink
Move ring files into ring dir
Browse files Browse the repository at this point in the history
  • Loading branch information
jwolski committed Oct 4, 2015
1 parent 668de93 commit c151ec3
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/unit/hashring_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
var HashRing = require('../../lib/ring');
var RBTree = require('../../lib/rbtree').RBTree;
var RBTree = require('../../lib/ring/rbtree').RBTree;

var test = require('tape');

Expand Down
4 changes: 2 additions & 2 deletions test/unit/rbiterator_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
var RBTree = require('../../lib/rbtree').RBTree;
var RBIterator = require('../../lib/rbtree').RBIterator;
var RBTree = require('../../lib/ring/rbtree').RBTree;
var RBIterator = require('../../lib/ring/rbtree').RBIterator;
var test = require('tape');

test('construct a new RBIterator', function t(assert) {
Expand Down
4 changes: 2 additions & 2 deletions test/unit/rbtree_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
var RBTree = require('../../lib/rbtree').RBTree;
var RingNode = require('../../lib/rbtree').RingNode;
var RBTree = require('../../lib/ring/rbtree').RBTree;
var RingNode = require('../../lib/ring/rbtree').RingNode;
var test = require('tape');

test('construct a new RBTree', function t(assert) {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/ring-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'use strict';

var _ = require('underscore');
var HashRing = require('../../lib/ring.js');
var HashRing = require('../../lib/ring');
var test = require('tape');

function createServers(size) {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/ringnode_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
var RingNode = require('../../lib/rbtree').RingNode;
var RingNode = require('../../lib/ring/rbtree').RingNode;
var test = require('tape');

test('construct a new red node with supplied values', function t(assert) {
Expand Down

0 comments on commit c151ec3

Please sign in to comment.