Skip to content

Commit 033c625

Browse files
authored
Smoketests - Fix another name collision (#4873)
# Description of Changes Similar to some changes made in #4269. Found another smoketest with a name collision which could cause flakes when running against a remote server. # API and ABI breaking changes <!-- If this is an API or ABI breaking change, please apply the corresponding GitHub label. --> # Expected complexity level and risk 1 # Testing - [ ] Smoketests pass Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
1 parent 604bb3e commit 033c625

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/smoketests/tests/smoketests/delete_database.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn test_delete_database_aborts_without_confirmation() {
2020
.autopublish(false)
2121
.build();
2222

23-
let name = format!("test-db-{}", std::process::id());
23+
let name = format!("delete-db-abort-{}", std::process::id());
2424
test.publish_module_named(&name, false).unwrap();
2525

2626
let output = test
@@ -77,7 +77,7 @@ fn test_delete_database_yes_skips_confirmation() {
7777
.autopublish(false)
7878
.build();
7979

80-
let name = format!("test-db-{}", std::process::id());
80+
let name = format!("delete-db-yes-{}", std::process::id());
8181
test.publish_module_named(&name, false).unwrap();
8282

8383
let output = test

0 commit comments

Comments
 (0)