From e1fd4cccef363c90d60f9441856d646240caa3db Mon Sep 17 00:00:00 2001 From: Shi Chen Date: Sun, 1 Dec 2024 20:24:26 -0600 Subject: [PATCH] closes #2 --- .../grc_register_async_function_tests.gml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Ganary/scripts/grc_register_async_function_tests/grc_register_async_function_tests.gml b/Ganary/scripts/grc_register_async_function_tests/grc_register_async_function_tests.gml index ed269fc..569ea22 100644 --- a/Ganary/scripts/grc_register_async_function_tests/grc_register_async_function_tests.gml +++ b/Ganary/scripts/grc_register_async_function_tests/grc_register_async_function_tests.gml @@ -132,11 +132,11 @@ function grc_register_async_function_tests(){ grc_expect_eq(video_format_rgba, video_get_format(), "The format should be rgba"); grc_expect_eq(false, video_is_looping(), "the video should not be looping."); return grc_instance_create(grc_o_video_function_test); - }).only(); + }); olympus_add_async_test("video_end_event_missing", function(){ return grc_instance_create(grc_o_video_end_event_missing); - }).only(); + }); olympus_add_async_test("video_open_block", function(){ return grc_instance_create(grc_o_video_open_block); @@ -144,7 +144,7 @@ function grc_register_async_function_tests(){ olympus_add_async_test("video_fps_freeze", function(){ return grc_instance_create(grc_o_video_fps_freeze); - }).only(); + }); olympus_add_async_test("global_function_definition_test", function(){ return grc_instance_create(grc_o_global_function_definition_test);