Remove printing to console in test

The test case, for whatever reason, printed data to the console.
This commit is contained in:
Markus Mäkelä 2018-08-08 19:23:59 +03:00
parent 207a8609dc
commit 679ab6a0e9
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -180,11 +180,7 @@ describe("Create/Destroy Commands", function() {
return doCommand('create server test-server 127.0.0.1 3306')
.then(() => verifyCommand('create service test-service readwritesplit user=maxuser password=maxpwd --servers test-server',
'services/test-service'))
.then(() => request.get(host + 'services/test-service', {json: true}))
.then((res) => {
console.log(res)
return true
})
.should.be.fulfilled
})
it('create filter', function() {