diff --git a/Directory.Packages.props b/Directory.Packages.props
index ca4477da2..ffb750117 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -5,76 +5,76 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
-
-
+
+
+
@@ -126,7 +126,7 @@
-
+
@@ -151,18 +151,18 @@
-
+
-
+
-
+
diff --git a/src/common/Elsa.Testing.Shared.Integration/WorkflowTestFixture.cs b/src/common/Elsa.Testing.Shared.Integration/WorkflowTestFixture.cs
index 6dd17215a..bc416667f 100644
--- a/src/common/Elsa.Testing.Shared.Integration/WorkflowTestFixture.cs
+++ b/src/common/Elsa.Testing.Shared.Integration/WorkflowTestFixture.cs
@@ -1,3 +1,4 @@
+using Elsa.Common.Multitenancy;
using Elsa.Expressions.Models;
using Elsa.Features.Services;
using Elsa.Workflows;
@@ -108,7 +109,9 @@ public class WorkflowTestFixture
return this;
_services = _testApplicationBuilder.Build();
- await Services.PopulateRegistriesAsync();
+ var tenantService = Services.GetRequiredService();
+ await tenantService.ActivateTenantsAsync();
+
return this;
}