From 4d8b50bafd265fead4f0e0e38aa9891661c9c6ad Mon Sep 17 00:00:00 2001 From: Ewy Date: Fri, 5 Jan 2024 20:25:47 +0100 Subject: [PATCH] Success! Removing the intentional failed test --- src/SpaceWarpTest/API/Versions/SemanticVersionTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SpaceWarpTest/API/Versions/SemanticVersionTests.cs b/src/SpaceWarpTest/API/Versions/SemanticVersionTests.cs index 1d418b2..ba915a1 100644 --- a/src/SpaceWarpTest/API/Versions/SemanticVersionTests.cs +++ b/src/SpaceWarpTest/API/Versions/SemanticVersionTests.cs @@ -175,7 +175,6 @@ public bool SemanticVersion_OperatorGreaterThanOrEqual_ComparesVersions(string v return semanticVersion1 >= semanticVersion2; } - [TestCase("1", ExpectedResult = "1")] [TestCase("1.2.3", ExpectedResult = "1.2.3")] [TestCase("1.2.3-alpha", ExpectedResult = "1.2.3-alpha")] [TestCase("1.2.3-alpha+build1", ExpectedResult = "1.2.3-alpha+build1")]