diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-02-15 17:44:37 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2015-02-15 17:44:37 +0100 |
commit | d38c843e13d411ab822b939a477dc6d6bc7fe5b2 (patch) | |
tree | 7d799c90ae0aae60e6faa49aa0f24eccdf77a7c9 /test/lv2.cc | |
parent | 3ac314a4514aa8ef15856d62fca672675e3c60c9 (diff) |
Fix the rest of the hardcoded lv2 paths.
Diffstat (limited to 'test/lv2.cc')
-rw-r--r-- | test/lv2.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lv2.cc b/test/lv2.cc index 23c914f..bfd2ce5 100644 --- a/test/lv2.cc +++ b/test/lv2.cc @@ -78,7 +78,7 @@ public: { int res; - LV2TestHost h("/home/deva/docs/c/drumgizmo/install/lib/lv2"); + LV2TestHost h(LV2_PATH); res = h.open(DG_URI); CPPUNIT_ASSERT_EQUAL(0, res); @@ -144,7 +144,7 @@ public: { int res; - LV2TestHost h("/home/deva/docs/c/drumgizmo/install/lib/lv2"); + LV2TestHost h(LV2_PATH); res = h.open(DG_URI); CPPUNIT_ASSERT_EQUAL(0, res); @@ -218,7 +218,7 @@ public: { int res; - LV2TestHost h("/home/deva/docs/c/drumgizmo/install/lib/lv2"); + LV2TestHost h(LV2_PATH); res = h.open(DG_URI); CPPUNIT_ASSERT_EQUAL(0, res); |