From 579c354537bf7cbab34484b7b18a588769160fc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Coussat?= Date: Thu, 7 May 2026 10:44:49 +0200 Subject: [PATCH] BUG: Fix wrong file names in itk_python_add_test --- test/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 6aea818..32aab0e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -20,8 +20,8 @@ itk_add_test(NAME pctHoleFillingImageFilterTest COMMAND PCTTestDriver pctHoleFil #----------------------------------------------------------------------------- # Python tests if(ITK_WRAP_PYTHON) - itk_python_add_test(NAME pctPythonWrappingInstantiationTest COMMAND pctPythonWrappingInstantiationTest.py) - itk_python_add_test(NAME pctOutputArgumentWrappingTest COMMAND pctOutputArgumentWrapping.py) + itk_python_add_test(NAME pctPythonWrappingInstantiationTest COMMAND pct_python_wrapping_instantiation_test.py) + itk_python_add_test(NAME pctOutputArgumentWrappingTest COMMAND pct_output_argument_wrapping_test.py) endif() #-----------------------------------------------------------------------------