From 93477215981ebc3cd0887f8a9e95c7e818f24f28 Mon Sep 17 00:00:00 2001 From: Arik Sosman Date: Fri, 8 Sep 2023 10:47:11 -0700 Subject: [PATCH] Use schema as test logger id. --- src/types.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 3e3d8c3..f530bd4 100644 --- a/src/types.rs +++ b/src/types.rs @@ -51,7 +51,8 @@ pub mod tests { impl TestLogger { pub fn new() -> TestLogger { - Self::with_id("".to_owned()) + let id = crate::tests::db_test_schema(); + Self::with_id(id) } pub fn with_id(id: String) -> TestLogger { TestLogger { -- 2.30.2