Skip to content

Commit

Permalink
fix CLI tests fails caused by PR #3416 (#3466)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovych666 authored and kibertoad committed Oct 6, 2019
1 parent 988fb24 commit 78a7e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jake/jakelib/migrate-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ test('migrate:up <name> throw an error', async (temp) => {
const migrationsPath = `${temp}/migrations`;
const migrationFile1 = '001_one.js';

const { stderr } = await assertExecError(
const stderr = await assertExecError(
`node ${KNEX} migrate:up ${migrationFile1} \
--client=sqlite3 \
--connection=${temp}/db \
Expand Down Expand Up @@ -624,7 +624,7 @@ test('migrate:down <name> throw an error', async (temp) => {
const migrationsPath = `${temp}/migrations`;
const migrationFile1 = '001_one.js';

const { stderr } = await assertExecError(
const stderr = await assertExecError(
`node ${KNEX} migrate:down ${migrationFile1} \
--client=sqlite3 \
--connection=${temp}/db \
Expand Down

0 comments on commit 78a7e9a

Please sign in to comment.