summaryrefslogtreecommitdiff
path: root/tests/at-spi2-atk/atk_test_hypertext.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2023-05-05 13:15:37 -0600
committerFederico Mena Quintero <federico@gnome.org>2023-05-09 10:04:26 -0600
commitf025a646dbe218f4c674c8563982cc9ef293a301 (patch)
treef5e4b7a38eebbd8f2ff38d5ddbf66f63d94dfad8 /tests/at-spi2-atk/atk_test_hypertext.c
parent487b90e5fea0c008e5e2d3772e2c907bac0d4cbf (diff)
downloadat-spi2-core-f025a646dbe218f4c674c8563982cc9ef293a301.tar.gz
Make at-spi2-atk test names more legible by not using concatenation with macros
Diffstat (limited to 'tests/at-spi2-atk/atk_test_hypertext.c')
-rw-r--r--tests/at-spi2-atk/atk_test_hypertext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/at-spi2-atk/atk_test_hypertext.c b/tests/at-spi2-atk/atk_test_hypertext.c
index e4fd862d..b193c8d4 100644
--- a/tests/at-spi2-atk/atk_test_hypertext.c
+++ b/tests/at-spi2-atk/atk_test_hypertext.c
@@ -80,10 +80,10 @@ atk_test_hypertext_get_link_index (TestAppFixture *fixture, gconstpointer user_d
void
atk_test_hypertext (void)
{
- g_test_add (ATK_TEST_PATH_HYPERTEXT "/atk_test_hypertext_get_n_links",
+ g_test_add ("/hypertext/atk_test_hypertext_get_n_links",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hypertext_get_n_links, fixture_teardown);
- g_test_add (ATK_TEST_PATH_HYPERTEXT "/atk_test_hypertext_get_links",
+ g_test_add ("/hypertext/atk_test_hypertext_get_links",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hypertext_get_link, fixture_teardown);
- g_test_add (ATK_TEST_PATH_HYPERTEXT "/atk_test_hypertext_get_link_index",
+ g_test_add ("/hypertext/atk_test_hypertext_get_link_index",
TestAppFixture, DATA_FILE, fixture_setup, atk_test_hypertext_get_link_index, fixture_teardown);
}