From 56425ce80dc7e8423ee53877049d748878f9de57 Mon Sep 17 00:00:00 2001 From: "Jeremy D. Miller" Date: Tue, 22 Oct 2024 08:44:08 -0500 Subject: [PATCH] trying to address a failing test on CI --- src/CoreTests/retry_mechanism.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/CoreTests/retry_mechanism.cs b/src/CoreTests/retry_mechanism.cs index 0aca0faf88..94057769c2 100644 --- a/src/CoreTests/retry_mechanism.cs +++ b/src/CoreTests/retry_mechanism.cs @@ -19,6 +19,8 @@ public class retry_mechanism : OneOffConfigurationsContext [Fact] public async Task can_successfully_retry() { + StoreOptions(opts => opts.DatabaseSchemaName = "retries"); + var sometimesFailingOperation1 = new SometimesFailingOperation(); theSession.QueueOperation(sometimesFailingOperation1); @@ -31,6 +33,8 @@ public async Task can_successfully_retry() [Fact] public async Task can_successfully_retry_sync() { + StoreOptions(opts => opts.DatabaseSchemaName = "retries"); + var sometimesFailingOperation1 = new SometimesFailingOperation(); theSession.QueueOperation(sometimesFailingOperation1);