SDL: Test: Remove early return in pow test.

From 3b9f47b85fbc356aae4a8c9bbe5c08db0afece46 Mon Sep 17 00:00:00 2001
From: Pierre Wendling <[EMAIL REDACTED]>
Date: Fri, 20 May 2022 21:45:31 -0400
Subject: [PATCH] Test: Remove early return in pow test.

---
 test/testautomation_math.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/test/testautomation_math.c b/test/testautomation_math.c
index 33cb2816485..729606d7fa0 100644
--- a/test/testautomation_math.c
+++ b/test/testautomation_math.c
@@ -1326,7 +1326,6 @@ pow_baseNanExp0Cases(void *args)
     SDLTest_AssertCheck(1.0 == result,
                         "Pow(%f,%f), expected %f, got %f",
                         NAN, 0.0, 1.0, result);
-    return TEST_COMPLETED;
 
     result = SDL_pow(NAN, -0.0);
     SDLTest_AssertCheck(1.0 == result,