From 7081c91d14b51febc50aa832debe25c9fe560bf5 Mon Sep 17 00:00:00 2001
From: Tinkerer_Red <nyancats1993@gmail.com>
Date: Tue, 28 Jan 2025 03:07:20 -0600
Subject: [PATCH] Removed not planned syntax crashing test case as of
 https://github.com/YoYoGames/GameMaker-Bugs/issues/9040

---
 .../BasicUnaryUpdateExpressions.gml              | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/projects/xUnit/scripts/BasicUnaryUpdateExpressions/BasicUnaryUpdateExpressions.gml b/projects/xUnit/scripts/BasicUnaryUpdateExpressions/BasicUnaryUpdateExpressions.gml
index c8c71b8..b76f2ca 100644
--- a/projects/xUnit/scripts/BasicUnaryUpdateExpressions/BasicUnaryUpdateExpressions.gml
+++ b/projects/xUnit/scripts/BasicUnaryUpdateExpressions/BasicUnaryUpdateExpressions.gml
@@ -203,20 +203,4 @@ function BasicUnaryUpdateExpressions() : TestSuite() constructor {
 		assert_equals(score  , 0, "Static variable get failed.");
     });
 	
-	addFact("Function Call Unary Update", function() {
-		
-		assert_true(false, "This code should be uncommented when the bug #9040 is fixed!");
-		
-		////////////////////////////////////////////////////////////////////////////////////////////////////
-		//var _func = function(){ return 0 }
-		//
-		//assert_equals(_func()  , 0, "Function call get failed.");
-		//assert_equals(++_func(), 0, "Function call PlusPlus Suffix failed.");
-		//assert_equals(_func()++, 2, "Function call PlusPlus Prefix failed.");
-		//assert_equals(--_func(), 2, "Function call MinusMinus Suffix failed.");
-		//assert_equals(_func()--, 0, "Function call MinusMinus Prefix failed.");
-		//assert_equals(_func()  , 0, "Function call get failed.");
-		////////////////////////////////////////////////////////////////////////////////////////////////////
-    });
-	
 }
\ No newline at end of file