diff options
author | Jill <kokakiwi@deuxfleurs.fr> | 2022-02-07 17:00:03 +0100 |
---|---|---|
committer | Jill <kokakiwi@deuxfleurs.fr> | 2022-02-11 10:50:55 +0100 |
commit | 84613e66a286536dff9828d8aca2625d2c6c6bf2 (patch) | |
tree | ec5fbca0adcc19fa05f3e6431335508ce135ad1e /src/garage/tests/common/mod.rs | |
parent | c8b30ebc79364707526e2ae935b6e408924eef16 (diff) | |
download | garage-84613e66a286536dff9828d8aca2625d2c6c6bf2.tar.gz garage-84613e66a286536dff9828d8aca2625d2c6c6bf2.zip |
garage(tests): Remove RNG stuff
Diffstat (limited to 'src/garage/tests/common/mod.rs')
-rw-r--r-- | src/garage/tests/common/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/garage/tests/common/mod.rs b/src/garage/tests/common/mod.rs index c40fde0f..32fa3848 100644 --- a/src/garage/tests/common/mod.rs +++ b/src/garage/tests/common/mod.rs @@ -7,7 +7,6 @@ pub mod macros; pub mod client; pub mod ext; pub mod garage; -pub mod util; const REGION: Region = Region::from_static("garage-integ-test"); @@ -28,7 +27,7 @@ impl Context { /// /// Return the created bucket full name. pub fn create_bucket(&self, name: &str) -> String { - let bucket_name = format!("{}-{}", name, util::random_id(6)); + let bucket_name = name.to_owned(); self.garage .command() |