From 852a7d8abe8a743938a9167aa3f1f7b0a40e631f Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 23 Dec 2021 11:30:46 -0500 Subject: [PATCH] Fix misleading comment (#361) (#369) Signed-off-by: Tim Clephas (cherry picked from commit a51ed2214ce96fe0ef1ee00455cb03ba14bd52f1) Co-authored-by: Tim Clephas --- ament_cmake_pytest/cmake/ament_add_pytest_test.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ament_cmake_pytest/cmake/ament_add_pytest_test.cmake b/ament_cmake_pytest/cmake/ament_add_pytest_test.cmake index 1ecf8d8d..4928e8b7 100644 --- a/ament_cmake_pytest/cmake/ament_add_pytest_test.cmake +++ b/ament_cmake_pytest/cmake/ament_add_pytest_test.cmake @@ -98,7 +98,7 @@ function(ament_add_pytest_test testname path) list(APPEND cmd "-We") endif() - # enable pytest coverage by default if the package test_depends on pytest_cov + # enable pytest coverage by default if the package test_depends on python3-pytest-cov if("python3-pytest-cov" IN_LIST ${PROJECT_NAME}_TEST_DEPENDS) set(coverage_default ON) else()