Skip to content

Commit 4527166

Browse files
author
serverpod_cloud
committed
fix: c0a0cd3133ff16dcaf863c11faba4008e37acdb0
1 parent 3f9f4c0 commit 4527166

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

serverpod_cloud_cli/lib/command_runner/commands/db_command.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class CloudDbCreateSuperuserCommand
131131

132132
logger.success(
133133
'''
134-
DB superuser created. The password on the next line is only shown this once:
134+
DB superuser created. The password is only shown this once:
135135
$password''',
136136
);
137137
},
@@ -184,7 +184,7 @@ class CloudDbResetPasswordCommand
184184

185185
logger.success(
186186
'''
187-
DB password is reset. The new password on the next line is only shown this once:
187+
DB password is reset. The new password is only shown this once:
188188
$password''',
189189
);
190190
},

serverpod_cloud_cli/test_integration/commands/db_command/db_command_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ void main() {
273273
expect(
274274
logger.successCalls.single.message,
275275
'''
276-
DB superuser created. The password on the next line is only shown this once:
276+
DB superuser created. The password is only shown this once:
277277
$password''',
278278
);
279279
});
@@ -315,7 +315,7 @@ $password''',
315315
expect(
316316
logger.successCalls.single.message,
317317
'''
318-
DB password is reset. The new password on the next line is only shown this once:
318+
DB password is reset. The new password is only shown this once:
319319
$password''',
320320
);
321321
});

0 commit comments

Comments
 (0)