More fixes of the tests

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
This commit is contained in:
Martin Tzvetanov Grigorov 2025-06-10 16:58:48 +03:00
parent 1824fbd1b5
commit 6a683975bf
No known key found for this signature in database
GPG key ID: 3194FD8C1AE300EF
3 changed files with 333 additions and 314 deletions

View file

@ -350,7 +350,7 @@ impl<State> Server<State> {
pub fn unique_index_with_prefix(&self, prefix: &str) -> Index<'_> {
let uuid = Uuid::new_v4();
Index {
uid: format!("{prefix}-{}", uuid.to_string()),
uid: format!("{prefix}-{}", uuid),
service: &self.service,
encoder: Encoder::Plain,
marker: PhantomData,