Skip to content

Commit

Permalink
pg-native/test: remove unused "done" arg from describe() calls (#3242)
Browse files Browse the repository at this point in the history
Co-authored-by: alxndrsn <alxndrsn>
  • Loading branch information
alxndrsn authored Jun 5, 2024
1 parent f2279f3 commit cd73e9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/pg-native/test/domains.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var checkDomain = function (domain, when) {
assert.strictEqual(process.domain, domain, 'Domain switched after ' + when)
}

describe('domains', function (done) {
describe('domains', function () {
it('remains bound after a query', function (done) {
var domain = require('domain').create() // eslint-disable-line
domain.run(function () {
Expand Down
2 changes: 1 addition & 1 deletion packages/pg-native/test/query-sync.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Client = require('../')
var assert = require('assert')

describe('query sync', function (done) {
describe('query sync', function () {
before(function () {
this.client = Client()
this.client.connectSync()
Expand Down

0 comments on commit cd73e9b

Please sign in to comment.