Skip to content

Commit

Permalink
chore: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tchang-gan committed Sep 18, 2023
1 parent 113a2d8 commit 1834d79
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/unexpected-knex.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1834d79

Please sign in to comment.