Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
fix: tests using files
Browse files Browse the repository at this point in the history
  • Loading branch information
vasco-santos committed Nov 30, 2018
1 parent 4085089 commit 3566712
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ describe('files', function () {

describe('has the same hashes for', () => {
const testHashesAreEqual = (daemon, data, options) => {
return daemon.api.files.add(data, options)
return daemon.api.add(data, options)
.then(files => files[0].hash)
}

Expand Down
4 changes: 2 additions & 2 deletions test/utils/circuit.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ exports.createGoNode = (addrs, callback) => {
const data = crypto.randomBytes(128)
exports.send = (nodeA, nodeB, callback) => {
waterfall([
(cb) => nodeA.files.add(data, cb),
(res, cb) => nodeB.files.cat(res[0].hash, cb),
(cb) => nodeA.add(data, cb),
(res, cb) => nodeB.cat(res[0].hash, cb),
(buffer, cb) => {
expect(buffer).to.deep.equal(data)
cb()
Expand Down

0 comments on commit 3566712

Please sign in to comment.