summaryrefslogtreecommitdiff
path: root/src/SMAPI.Tests/Core/InterfaceProxyTests.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-05-26 00:57:13 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-06-10 00:04:23 -0400
commitdb578c389e35ee026ed4ea12dfdcef99f8bc3b28 (patch)
treeb2192a475beb3383356689ef0953c37d5c5da4a8 /src/SMAPI.Tests/Core/InterfaceProxyTests.cs
parent769475166ab3b92cd3763bb86e364a8b2c7d914f (diff)
downloadSMAPI-db578c389e35ee026ed4ea12dfdcef99f8bc3b28.tar.gz
SMAPI-db578c389e35ee026ed4ea12dfdcef99f8bc3b28.tar.bz2
SMAPI-db578c389e35ee026ed4ea12dfdcef99f8bc3b28.zip
drop support for pre-Pintail proxying
Diffstat (limited to 'src/SMAPI.Tests/Core/InterfaceProxyTests.cs')
-rw-r--r--src/SMAPI.Tests/Core/InterfaceProxyTests.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/SMAPI.Tests/Core/InterfaceProxyTests.cs b/src/SMAPI.Tests/Core/InterfaceProxyTests.cs
index 6be97526..d14c116f 100644
--- a/src/SMAPI.Tests/Core/InterfaceProxyTests.cs
+++ b/src/SMAPI.Tests/Core/InterfaceProxyTests.cs
@@ -29,11 +29,8 @@ namespace SMAPI.Tests.Core
/// <summary>The random number generator with which to create sample values.</summary>
private readonly Random Random = new();
- /// <summary>Sample user inputs for season names.</summary>
- private static readonly IInterfaceProxyFactory[] ProxyFactories = {
- new InterfaceProxyFactory(),
- new OriginalInterfaceProxyFactory()
- };
+ /// <summary>The proxy factory to use in unit tests.</summary>
+ private static readonly IInterfaceProxyFactory[] ProxyFactories = { new InterfaceProxyFactory() };
/*********