From 1834d79ba790ac9c40f541f0496b2e5977cc9414 Mon Sep 17 00:00:00 2001 From: Thyen Chang Date: Mon, 18 Sep 2023 07:46:29 -0300 Subject: [PATCH] chore: lint fix --- lib/unexpected-knex.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/unexpected-knex.js b/lib/unexpected-knex.js index edb7fb0..f068910 100644 --- a/lib/unexpected-knex.js +++ b/lib/unexpected-knex.js @@ -25,9 +25,12 @@ const unexpectedKnexMigrationListResolver = Object.assign( }, ); -const UnexpectedKnexMigrator = proxyquire('knex/lib/migrations/migrate/Migrator', { - './migration-list-resolver': unexpectedKnexMigrationListResolver, -}).Migrator; +const UnexpectedKnexMigrator = proxyquire( + 'knex/lib/migrations/migrate/Migrator', + { + './migration-list-resolver': unexpectedKnexMigrationListResolver, + }, +).Migrator; function MigrationTest(knex, expect) { this.knex = knex;