diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-04-15 19:21:30 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-04-15 19:21:30 -0400 |
commit | de4d4e0bcb2d69622ef9f2e616648f4310047f5f (patch) | |
tree | cfcf7d275fdcef56ae3bfd0bd06148c07d4e3d62 | |
parent | 3a247fa75c56f315d82ea55143e89d28d61c064c (diff) | |
download | SMAPI-de4d4e0bcb2d69622ef9f2e616648f4310047f5f.tar.gz SMAPI-de4d4e0bcb2d69622ef9f2e616648f4310047f5f.tar.bz2 SMAPI-de4d4e0bcb2d69622ef9f2e616648f4310047f5f.zip |
update unit test
-rw-r--r-- | src/SMAPI.Tests/Core/ModResolverTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Tests/Core/ModResolverTests.cs b/src/SMAPI.Tests/Core/ModResolverTests.cs index a9c88c60..45b3673b 100644 --- a/src/SMAPI.Tests/Core/ModResolverTests.cs +++ b/src/SMAPI.Tests/Core/ModResolverTests.cs @@ -73,7 +73,7 @@ namespace SMAPI.Tests.Core [nameof(IManifest.Description)] = Sample.String(), [nameof(IManifest.UniqueID)] = $"{Sample.String()}.{Sample.String()}", [nameof(IManifest.EntryDll)] = $"{Sample.String()}.dll", - [nameof(IManifest.MinimumApiVersion)] = $"{Sample.Int()}.{Sample.Int()}-{Sample.String()}", + [nameof(IManifest.MinimumApiVersion)] = $"{Sample.Int()}.{Sample.Int()}.{Sample.Int()}-{Sample.String()}", [nameof(IManifest.Dependencies)] = new[] { originalDependency }, ["ExtraString"] = Sample.String(), ["ExtraInt"] = Sample.Int() |