From 2db378b8720cc392592c7a3bf7e7d34e6cdbbcf4 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 23 Dec 2023 18:28:56 +0100 Subject: [PATCH] Fixed a merge issue --- src/pymod/unit_tests/pymod_tests.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pymod/unit_tests/pymod_tests.cc b/src/pymod/unit_tests/pymod_tests.cc index dd5c4f092..fee3600e4 100644 --- a/src/pymod/unit_tests/pymod_tests.cc +++ b/src/pymod/unit_tests/pymod_tests.cc @@ -37,7 +37,7 @@ int run_pymodtest (tl::TestBase *_this, const std::string &fn) { - std::string pypath = STRINGIFY (PYTHONPATH); + static std::string pypath = tl::combine_path (tl::get_inst_path (), "pymod"); tl::set_env ("PYTHONPATH", pypath); tl::info << "PYTHONPATH=" << pypath;