Skip to content

Commit 0ed4f8d

Browse files
committed
test: change var name
1 parent a10730c commit 0ed4f8d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if(0)
4343

4444
target_compile_definitions(
4545
test.qp_eq.py
46-
PUBLIC INRIA_LDLT_QP_PYTHON_PATH="${CMAKE_CURRENT_BINARY_DIR}/qp_problem/")
46+
PUBLIC QP_PROBLEM_PATH="${CMAKE_CURRENT_BINARY_DIR}/qp_problem/")
4747
endif()
4848

4949
proxsuite_test(dense_ruiz_equilibration src/dense_ruiz_equilibration.cpp)

test/src/qp_eq_py.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ using Scalar = double;
1818
DOCTEST_TEST_CASE("qp: test qp loading and solving")
1919
{
2020

21-
std::ifstream file(INRIA_LDLT_QP_PYTHON_PATH
22-
"source_files.txt"); // to be changed
21+
std::ifstream file(QP_PROBLEM_PATH "source_files.txt"); // to be changed
2322
Scalar eps_abs = Scalar(1e-9);
2423

2524
std::string path_len;

0 commit comments

Comments
 (0)