Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Herrmann committed Nov 13, 2019
1 parent c32e5b8 commit 3dab814
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/sql.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ describe('sql', () => {
client = require('../../pg')
await client.connect()
sql = require('../../')({ client })
await sql.delete('users')
await sql.deleteAll('users')
})

after(async () => {
await sql.delete('users')
await sql.deleteAll('users')
await client.end()
})

Expand Down

0 comments on commit 3dab814

Please sign in to comment.