summaryrefslogtreecommitdiff
path: root/src/SMAPI.Tests/Core/InterfaceProxyTests.cs
diff options
context:
space:
mode:
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() };
/*********