From 1eb58f905449fb3af9bf79bf2589df47f544c9cb Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 9 Jan 2022 23:26:33 +0100 Subject: [PATCH] Tests: Merge "notifiers" and "universal" groups The sole notifiers test recreated the uvar directory, so if it was called while the universal test was running it would stop it from completing correctly. This happened reasonably often on Ubuntu with tsan on Github Actions. --- src/fish_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fish_tests.cpp b/src/fish_tests.cpp index 3ad051c91..c99c15d3b 100644 --- a/src/fish_tests.cpp +++ b/src/fish_tests.cpp @@ -6813,7 +6813,7 @@ static const test_t s_tests[]{ {TEST_GROUP("universal"), test_universal_callbacks}, {TEST_GROUP("universal"), test_universal_formats}, {TEST_GROUP("universal"), test_universal_ok_to_save}, - {TEST_GROUP("notifiers"), test_universal_notifiers}, + {TEST_GROUP("universal"), test_universal_notifiers}, {TEST_GROUP("wait_handles"), test_wait_handles}, {TEST_GROUP("completion_insertions"), test_completion_insertions}, {TEST_GROUP("autosuggestion_ignores"), test_autosuggestion_ignores},