From eb26c8d5d8a98c1c8f02337ee3f6c7e45139db83 Mon Sep 17 00:00:00 2001 From: Jose Celano Date: Mon, 18 Sep 2023 15:46:53 +0100 Subject: [PATCH] fix: tag name for random tag in tests --- tests/common/contexts/tag/fixtures.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common/contexts/tag/fixtures.rs b/tests/common/contexts/tag/fixtures.rs index 39ac3081..6012497f 100644 --- a/tests/common/contexts/tag/fixtures.rs +++ b/tests/common/contexts/tag/fixtures.rs @@ -1,7 +1,7 @@ use rand::Rng; pub fn random_tag_name() -> String { - format!("category name {}", random_id()) + format!("tag name {}", random_id()) } fn random_id() -> u64 {