Skip to content

Commit

Permalink
no more byteup
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneware committed May 13, 2014
1 parent 66e4be4 commit d6e567f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/level-plan.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var expect = require('chai').expect,
bytewise = require('byteup')(),
bytewise = require('bytewise'),
levelup = require('levelup'),
path = require('path'),
pairs = require('pairs'),
Expand All @@ -25,7 +25,7 @@ describe('level-plan', function() {

beforeEach(function(done) {
rimraf.sync(dbPath);
db = levelup(dbPath, { keyEncoding: 'bytewise', valueEncoding: 'json' }, done);
db = levelup(dbPath, { valueEncoding: 'json' }, done);
});

afterEach(function(done) {
Expand Down

0 comments on commit d6e567f

Please sign in to comment.