Skip to content

Commit a20a7d5

Browse files
author
Ryan X. Charles
committed
fix more travis issues
Another test was having the same issues as in the previous commit and sporadically breaking travis, so I've applied the same fix.
1 parent 53eb08a commit a20a7d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/bitgoExpress.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ describe('Bitgo Express', function() {
170170
it('send coins - wallet1 to wallet3', function(done) {
171171
agent.post('/api/v1/user/unlock')
172172
.set('Authorization', 'Bearer ' + TestBitGo.TEST_ACCESSTOKEN)
173-
.send({ otp: '0000000', duration: 5 })
173+
.send({ otp: '0000000', duration: 10 })
174174
.expect('Content-Type', /json/)
175175
.end(function(err, res) {
176176
if (err) { throw err; }
@@ -182,7 +182,7 @@ describe('Bitgo Express', function() {
182182
.expect('Content-Type', /json/)
183183
.end(function(err, res) {
184184
if (err) { throw err; }
185-
res.should.have.status(200);
185+
res.status.should.equal(200);
186186
res.body.should.have.property('tx');
187187
res.body.should.have.property('hash');
188188
res.body.should.have.property('fee');

0 commit comments

Comments
 (0)