Remove dumb integration test

This commit is contained in:
Jordan Brown
2020-04-27 20:36:05 -04:00
parent 7399ac0644
commit fd1ff6313f
@@ -60,19 +60,6 @@ namespace Tgstation.Server.Tests
Assert.AreEqual(expected, actual);
}
[TestMethod]
public void TestClientVersionFollowingApiVersion()
{
var versionString = versionsPropertyGroup.Element(xmlNamespace + "TgsApiVersion").Value + ".0";
Assert.IsNotNull(versionString);
Assert.IsTrue(Version.TryParse(versionString, out var apiVersion));
versionString = versionsPropertyGroup.Element(xmlNamespace + "TgsClientVersion").Value + ".0";
Assert.IsNotNull(versionString);
Assert.IsTrue(Version.TryParse(versionString, out var clientVersion));
Assert.IsTrue(clientVersion >= apiVersion);
}
[TestMethod]
public void TestWatchdogVersion()
{