diff --git a/src/StressTests/projections_with_IoC_services.cs b/src/StressTests/projections_with_IoC_services.cs index 0cd176de46..dc65bc2d62 100644 --- a/src/StressTests/projections_with_IoC_services.cs +++ b/src/StressTests/projections_with_IoC_services.cs @@ -314,7 +314,7 @@ public async Task use_projection_as_scoped_and_inline_on_martenStore() services.AddMartenStore(opts => { opts.Connection(ConnectionSource.ConnectionString); - opts.DatabaseSchemaName = "ioc"; + opts.DatabaseSchemaName = "ioc3"; opts.ApplyChangesLockId = opts.ApplyChangesLockId + 9; }).AddProjectionWithServices(ProjectionLifecycle.Inline, ServiceLifetime.Scoped, "MyProjection") .ApplyAllDatabaseChangesOnStartup(); @@ -345,7 +345,7 @@ public async Task get_async_shards_with_custom_name_on_martenStore() services.AddMartenStore(opts => { opts.Connection(ConnectionSource.ConnectionString); - opts.DatabaseSchemaName = "ioc"; + opts.DatabaseSchemaName = "ioc2"; opts.ApplyChangesLockId = opts.ApplyChangesLockId + 10; }).AddProjectionWithServices(ProjectionLifecycle.Async, ServiceLifetime.Scoped, "MyProjection") .ApplyAllDatabaseChangesOnStartup();