From e8a8aa2d6f071bd685d5f6594c6bd78d0a9ec79c Mon Sep 17 00:00:00 2001 From: SSE4 Date: Fri, 22 May 2020 03:50:48 +0700 Subject: [PATCH] - fix broken test (#7065) Signed-off-by: SSE4 --- conans/test/functional/generators/pkg_config_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conans/test/functional/generators/pkg_config_test.py b/conans/test/functional/generators/pkg_config_test.py index e00ff73135e..cd24f471709 100644 --- a/conans/test/functional/generators/pkg_config_test.py +++ b/conans/test/functional/generators/pkg_config_test.py @@ -43,9 +43,9 @@ def package_info(self): pc_content = load(pc_path) expected_rpaths = "" if platform.system() == "Linux": - expected_rpaths = ' -Wl,-rpath="${libdir}" -Wl,-rpath="${libdir3}"' + expected_rpaths = ' -Wl,-rpath="${libdir}" -Wl,-rpath="${libdir2}"' elif platform.system() == "Darwin": - expected_rpaths = ' -Wl,-rpath,"${libdir}" -Wl,-rpath,"${libdir3}"' + expected_rpaths = ' -Wl,-rpath,"${libdir}" -Wl,-rpath,"${libdir2}"' expected_content = """libdir=/my_absoulte_path/fake/mylib/lib libdir2=${prefix}/lib2 includedir=/my_absoulte_path/fake/mylib/include