Add being able to force a test to pool

This commit is contained in:
DrSmugleaf
2021-11-21 12:13:26 +01:00
parent b889606569
commit af6e09c5bd

View File

@@ -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)