diff options
author | David Robillard <d@drobilla.net> | 2021-01-11 02:35:06 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-24 10:58:32 -0400 |
commit | 52cd7ee00e64a021128034da5855a88be52f0871 (patch) | |
tree | 676708459122aeeaf65c9d4c05a39798e7c4be6f /test/lilv_test_utils.c | |
parent | 71a2ff5170caaa052814cce19b3de927d10d0e24 (diff) | |
download | lilv-52cd7ee00e64a021128034da5855a88be52f0871.tar.gz lilv-52cd7ee00e64a021128034da5855a88be52f0871.tar.bz2 lilv-52cd7ee00e64a021128034da5855a88be52f0871.zip |
WIP: Switch to Meson
Diffstat (limited to 'test/lilv_test_utils.c')
-rw-r--r-- | test/lilv_test_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lilv_test_utils.c b/test/lilv_test_utils.c index f658f1b..bc6eb3d 100644 --- a/test/lilv_test_utils.c +++ b/test/lilv_test_utils.c @@ -47,7 +47,7 @@ lilv_test_env_new(void) // Set custom LV2_PATH in build directory to only use test data char* test_path = lilv_path_canonical(LILV_TEST_DIR); - char* lv2_path = lilv_strjoin(test_path, "/test_lv2_path", NULL); + char* lv2_path = lilv_strjoin(test_path, "/lv2", NULL); LilvNode* path = lilv_new_string(world, lv2_path); lilv_world_set_option(world, LILV_OPTION_LV2_PATH, path); free(lv2_path); |