From 6a74deab37606e6dd2e209c6f1c3cd1006e3937e Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 15 Jan 2021 10:58:09 +0100 Subject: [PATCH] Disable discord connections in integration tests again. ??? --- Content.IntegrationTests/ContentIntegrationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.IntegrationTests/ContentIntegrationTest.cs b/Content.IntegrationTests/ContentIntegrationTest.cs index 63c05143c7..20b35baf4b 100644 --- a/Content.IntegrationTests/ContentIntegrationTest.cs +++ b/Content.IntegrationTests/ContentIntegrationTest.cs @@ -49,7 +49,7 @@ namespace Content.IntegrationTests // Connecting to Discord is a massive waste of time. // Basically just makes the CI logs a mess. - options.CVarOverrides["discord.enabled"] = "true"; + options.CVarOverrides["discord.enabled"] = "false"; return base.StartClient(options); }