From ed615e92b797220e24894e5f95f1f60c8fa8c587 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 17 Feb 2024 09:30:50 -0800 Subject: [PATCH] Updated automated test now that getting an invalid property isn't an error --- test/testautomation_video.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/testautomation_video.c b/test/testautomation_video.c index 1d652b2716..c8e764fc41 100644 --- a/test/testautomation_video.c +++ b/test/testautomation_video.c @@ -1682,13 +1682,11 @@ static int video_getSetWindowData(void *arg) result = (char *)SDL_GetProperty(SDL_GetWindowProperties(window), NULL, NULL); SDLTest_AssertPass("Call to SDL_GetWindowData(name=NULL)"); SDLTest_AssertCheck(result == NULL, "Validate that result is NULL"); - checkInvalidParameterError(); /* Get data with empty name */ result = (char *)SDL_GetProperty(SDL_GetWindowProperties(window), "", NULL); SDLTest_AssertPass("Call to SDL_GetWindowData(name='')"); SDLTest_AssertCheck(result == NULL, "Validate that result is NULL"); - checkInvalidParameterError(); /* Clean up */ destroyVideoSuiteTestWindow(window);