From 216494a3a16909a528ed2a5c85d5cadbfabc1c6a Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Sun, 19 May 2024 19:16:52 +1000 Subject: [PATCH] Update MartenTest.cs --- Marten.Integration.Tests/TestsInfrastructure/MartenTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marten.Integration.Tests/TestsInfrastructure/MartenTest.cs b/Marten.Integration.Tests/TestsInfrastructure/MartenTest.cs index 2c3683b26..8ea5bb00b 100644 --- a/Marten.Integration.Tests/TestsInfrastructure/MartenTest.cs +++ b/Marten.Integration.Tests/TestsInfrastructure/MartenTest.cs @@ -36,7 +36,7 @@ public abstract class MartenTest( protected IEventStore EventStore => Session.Events; - protected readonly string SchemaName = useRandomSchema ? "sch" + Guid.NewGuid().ToString().Replace("-", string.Empty) : "EventStore"; + protected readonly string SchemaName = useRandomSchema ? "sch" + Guid.NewGuid().ToString("N") : "EventStore"; protected virtual IDocumentSession CreateSession(Action? storeOptions = null) {