summaryrefslogtreecommitdiff
path: root/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-18 10:59:57 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-18 10:59:57 -0400
commit2ff937397163f0ad5940b636bc7312ac747d9c39 (patch)
treea5c0daa505423868b00bc6d55156361b08bf63fa /src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
parent79118316065a01322d8ea12a14589ec016794c32 (diff)
downloadSMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.tar.gz
SMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.tar.bz2
SMAPI-2ff937397163f0ad5940b636bc7312ac747d9c39.zip
fix compatibility check crashing for players with SDV 1.08
Diffstat (limited to 'src/SMAPI.Tests/Utilities/SemanticVersionTests.cs')
-rw-r--r--src/SMAPI.Tests/Utilities/SemanticVersionTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs b/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
index 03cd26c9..73ecd56e 100644
--- a/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
+++ b/src/SMAPI.Tests/Utilities/SemanticVersionTests.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Diagnostics.CodeAnalysis;
using Newtonsoft.Json;
using NUnit.Framework;
@@ -239,6 +239,7 @@ namespace StardewModdingAPI.Tests.Utilities
[TestCase("1.06")]
[TestCase("1.07")]
[TestCase("1.07a")]
+ [TestCase("1.08")]
[TestCase("1.1")]
[TestCase("1.11")]
[TestCase("1.2")]