From ea2f5e39e395df29a33718207356a24396380db0 Mon Sep 17 00:00:00 2001 From: wrexbe <81056464+wrexbe@users.noreply.github.com> Date: Sat, 27 Aug 2022 17:26:07 -0700 Subject: [PATCH] Mark sandbox test as destructive (#10889) --- Content.IntegrationTests/Tests/Utility/SandboxTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/Utility/SandboxTest.cs b/Content.IntegrationTests/Tests/Utility/SandboxTest.cs index 030d9e27c1..45b681c221 100644 --- a/Content.IntegrationTests/Tests/Utility/SandboxTest.cs +++ b/Content.IntegrationTests/Tests/Utility/SandboxTest.cs @@ -8,7 +8,7 @@ public sealed class SandboxTest [Test] public async Task Test() { - await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{NoServer = true}); + await using var pairTracker = await PoolManager.GetServerClient(new PoolSettings{NoServer = true, Destructive = true}); var client = pairTracker.Pair.Client; await client.CheckSandboxed(typeof(Client.Entry.EntryPoint).Assembly); await pairTracker.CleanReturnAsync();