Skip to content

Commit 85d3f45

Browse files
committed
test: fix failing test re: error resp. format
1 parent 5be0161 commit 85d3f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/index.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe('should give meaningful errors', () => {
6161
} catch (error) {
6262
let { status, data } = error.response
6363
assert.equal(status, 400)
64-
assert.equal(data.error, 'error: table "fake_table" does not exist')
64+
assert.equal(data.error, 'table "fake_table" does not exist')
6565
}
6666
})
6767
})

0 commit comments

Comments
 (0)