From ddaf583ba0496ec167db445c8b45d2f1a70cbd3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Guti=C3=A9rrez?= Date: Tue, 9 Apr 2019 12:50:49 +0200 Subject: [PATCH] Fix environment issues on Travis. --- .travis.yml | 1 + integration/ocean/ConsumeAsset.test.ts | 2 +- library.json | 8 ++++++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e5fdfa1..a8740ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,7 @@ before_script: - git clone https://github.com/oceanprotocol/barge - cd barge - export AQUARIUS_VERSION=v0.2.1 + - export BRIZO_VERSION=v0.3.4 - export KEEPER_VERSION=v0.9.0 - export KEEPER_OWNER_ROLE_ADDRESS="0xe2DD09d719Da89e5a3D0F2549c7E24566e947260" - bash -x start_ocean.sh --latest --no-pleuston --local-spree-node 2>&1 > start_ocean.log & diff --git a/integration/ocean/ConsumeAsset.test.ts b/integration/ocean/ConsumeAsset.test.ts index c09482d..7bbc4ca 100644 --- a/integration/ocean/ConsumeAsset.test.ts +++ b/integration/ocean/ConsumeAsset.test.ts @@ -134,6 +134,6 @@ describe("Consume Asset", () => { }) }) - assert.deepEqual(files, ["package.json"], "Stored files are not correct.") + assert.deepEqual(files, ["README.md"], "Stored files are not correct.") }) }) diff --git a/library.json b/library.json index 803d3fe..b17a643 100644 --- a/library.json +++ b/library.json @@ -7,11 +7,15 @@ "dependencies": [ { "name": "keeper-contracts", - "version": "0.9.0" + "version": "~0.9.0" }, { "name": "brizo", - "version": ">0.3.1" + "version": "~0.3.4" + }, + { + "name": "aquarius", + "version": "~0.2.1" } ] }