From af6e09c5bd6d811161766155b71496581bb27275 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Sun, 21 Nov 2021 12:13:26 +0100 Subject: [PATCH] Add being able to force a test to pool --- Content.IntegrationTests/ContentIntegrationTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.IntegrationTests/ContentIntegrationTest.cs b/Content.IntegrationTests/ContentIntegrationTest.cs index 4a6851f690..8bcaeb3bcf 100644 --- a/Content.IntegrationTests/ContentIntegrationTest.cs +++ b/Content.IntegrationTests/ContentIntegrationTest.cs @@ -193,9 +193,9 @@ namespace Content.IntegrationTests return false; } - if (options.Pool == false) + if (options.Pool.HasValue) { - return false; + return options.Pool.Value; } if (server)