Skip to content

Commit e7bd678

Browse files
committed
make success message consistent w/ bulkops
1 parent 88dbf27 commit e7bd678

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/app/src/cli/services/execute-operation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ describe('executeOperation', () => {
168168

169169
expect(renderSuccess).toHaveBeenCalledWith(
170170
expect.objectContaining({
171-
headline: 'Operation completed successfully.',
171+
headline: 'Operation succeeded.',
172172
}),
173173
)
174174
})

packages/app/src/cli/services/execute-operation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ export async function executeOperation(input: ExecuteOperationInput): Promise<vo
6565
if (outputFile) {
6666
await writeFile(outputFile, resultString)
6767
renderSuccess({
68-
headline: 'Operation completed successfully.',
68+
headline: 'Operation succeeded.',
6969
body: `Results written to ${outputFile}`,
7070
})
7171
} else {
7272
renderSuccess({
73-
headline: 'Operation completed successfully.',
73+
headline: 'Operation succeeded.',
7474
})
7575
outputResult(resultString)
7676
}

0 commit comments

Comments
 (0)