diff options
Diffstat (limited to 'src/bin/scripts/t/070_dropuser.pl')
-rw-r--r-- | src/bin/scripts/t/070_dropuser.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/scripts/t/070_dropuser.pl b/src/bin/scripts/t/070_dropuser.pl index 166a591d0a1..2e858c595bc 100644 --- a/src/bin/scripts/t/070_dropuser.pl +++ b/src/bin/scripts/t/070_dropuser.pl @@ -13,11 +13,11 @@ my $node = get_new_node('main'); $node->init; $node->start; -$node->safe_psql('postgres', 'CREATE ROLE foobar1'); +$node->safe_psql('postgres', 'CREATE ROLE regress_foobar1'); $node->issues_sql_like( - [ 'dropuser', 'foobar1' ], - qr/statement: DROP ROLE foobar1/, + [ 'dropuser', 'regress_foobar1' ], + qr/statement: DROP ROLE regress_foobar1/, 'SQL DROP ROLE run'); -$node->command_fails([ 'dropuser', 'nonexistent' ], +$node->command_fails([ 'dropuser', 'regress_nonexistent' ], 'fails with nonexistent user'); |