Skip to content

Commit fe88751

Browse files
committed
lint
1 parent f448e45 commit fe88751

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/cli/test/acceptance/commands-output.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ pg:settings:log-min-duration-statement The duration of each completed st
206206
pg:settings:log-statement log_statement controls which SQL statements are logged.
207207
pg:settings:track-functions track_functions controls tracking of function call counts and time used. Default is none.
208208
pg:unfollow stop a replica from following and make it a writeable database
209-
pg:upgrade Were deprecating this command. To upgrade your database's Postgres version, use the new pg:upgrade:* subcommands. See https://devcenter.heroku.com/changelog-items/3179.
209+
pg:upgrade We're deprecating this command. To upgrade your database's Postgres version, use the new pg:upgrade:* subcommands. See https://devcenter.heroku.com/changelog-items/3179.
210210
pg:vacuum-stats show dead rows and whether an automatic vacuum is expected to be triggered
211211
pg:wait blocks until database is available
212212
pipelines list pipelines you have access to

packages/cli/test/unit/commands/pg/upgrade/run.unit.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ describe('pg:upgrade', function () {
206206
.reply(200)
207207
nock('https://api.data.heroku.com')
208208
.post(`/client/v11/databases/${addon.id}/upgrade/run`)
209-
.reply(400, {id: 'bad_request', message: "Your database is not ready for upgrade. Please try running your upgrade later. You can check the status of your upgrade with `heroku pg:upgrade:wait`."})
209+
.reply(400, {id: 'bad_request', message: 'Your database is not ready for upgrade. Please try running your upgrade later. You can check the status of your upgrade with `heroku pg:upgrade:wait`.'})
210210

211211
await runCommand(Cmd, [
212212
'--app',
@@ -247,7 +247,7 @@ describe('pg:upgrade', function () {
247247
'--app',
248248
'myapp',
249249
])
250-
250+
251251
expect(stripAnsi(uxPromptStub.args[0].toString())).contains('To proceed, type myapp')
252252
expect(stripAnsi(uxWarnStub.args[0].toString())).to.eq(message)
253253

@@ -256,5 +256,5 @@ describe('pg:upgrade', function () {
256256
Starting upgrade on ${addon.name}... done
257257
Started the upgrade. You can monitor the progress with heroku pg:upgrade:wait.
258258
`))
259-
})
259+
})
260260
})

0 commit comments

Comments
 (0)