From b19e6165edc1ecf181c4234e526c0d829a9534f8 Mon Sep 17 00:00:00 2001 From: Philip Cook Date: Thu, 21 Mar 2024 09:16:18 -0400 Subject: [PATCH] STYLE: Typo --- tests/run_tests.ps1 | 2 +- tests/run_tests.sh | 4 ++-- tests/{test_registation.py => test_registration.py} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/{test_registation.py => test_registration.py} (100%) diff --git a/tests/run_tests.ps1 b/tests/run_tests.ps1 index b5004fee..eaac628b 100644 --- a/tests/run_tests.ps1 +++ b/tests/run_tests.ps1 @@ -7,7 +7,7 @@ $PYTHON_SCRIPTS = @( "test_core_ants_transform_io.py", "test_core_ants_metric.py", "test_learn.py", - "test_registation.py", + "test_registration.py", "test_segmentation.py", "test_utils.py", "test_bugs.py" diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 1ccff641..8ffcdcf2 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -30,8 +30,8 @@ $PYCMD test_core_ants_metric.py $@ echo "Running learn tests" $PYCMD test_learn.py $@ -echo "Running registation tests" -$PYCMD test_registation.py $@ +echo "Running registration tests" +$PYCMD test_registration.py $@ echo "Running segmentation tests" $PYCMD test_segmentation.py $@ diff --git a/tests/test_registation.py b/tests/test_registration.py similarity index 100% rename from tests/test_registation.py rename to tests/test_registration.py