From 99f8129db786f427dcfe77e9014a4af675b01b3b Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 22 Jan 2021 10:45:01 -0500 Subject: [PATCH] Remove unneeded DMAPI version test --- tests/DMAPI/BasicOperation/Test.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/DMAPI/BasicOperation/Test.dm b/tests/DMAPI/BasicOperation/Test.dm index cac9cab680..23dbc6295c 100644 --- a/tests/DMAPI/BasicOperation/Test.dm +++ b/tests/DMAPI/BasicOperation/Test.dm @@ -14,13 +14,6 @@ sleep(50) world.TgsTargetedChatBroadcast("Sample admin-only message", TRUE) - world.log << "Validating API sleep" - // Validate current DMAPI version against DMAPI version used - var/datum/tgs_version/active_version = world.TgsApiVersion() - var/datum/tgs_version/dmapi_version = world.TgsMaximumApiVersion() - if(!active_version.Equals(dmapi_version)) - text2file("DMAPI version [TGS_DMAPI_VERSION] does not match active API version [active_version.raw_parameter]", "test_fail_reason.txt") - var/list/world_params = params2list(world.params) if(!("test" in world_params) || world_params["test"] != "bababooey") text2file("Expected parameter test=bababooey but did not receive", "test_fail_reason.txt")