diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-06-16 22:14:44 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-06-16 22:14:44 -0400 |
commit | 8e9237bdd7ec179975c9be5e28c811b42007e707 (patch) | |
tree | 665ca44f40e77e8f4a3af55ee442e2b3acba6434 /src/SMAPI.Tests/Core/InterfaceProxyTests.cs | |
parent | e10147e7bda94a8fbc58684246628a6520d2c6b8 (diff) | |
parent | 011aa4c9d07d6fc313d6d1ee107651778bb3c665 (diff) | |
download | SMAPI-8e9237bdd7ec179975c9be5e28c811b42007e707.tar.gz SMAPI-8e9237bdd7ec179975c9be5e28c811b42007e707.tar.bz2 SMAPI-8e9237bdd7ec179975c9be5e28c811b42007e707.zip |
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI.Tests/Core/InterfaceProxyTests.cs')
-rw-r--r-- | src/SMAPI.Tests/Core/InterfaceProxyTests.cs | 7 |
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() }; /********* |