Skip to content

Commit d6203c2

Browse files
LeengitN-Dekker
authored andcommitted
STYLE: Change Over/UnderFlow to Over/Underflow
1 parent fee75ae commit d6203c2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Modules/Core/Common/test/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,9 +555,9 @@ if("${CMAKE_SYSTEM_NAME}" MATCHES "Darwin|Linux")
555555
itk_add_test(NAME itkFloatingPointExceptionsTest2 COMMAND ITKCommon1TestDriver
556556
itkFloatingPointExceptionsTest ZeroDivByZero)
557557
itk_add_test(NAME itkFloatingPointExceptionsTest3 COMMAND ITKCommon1TestDriver
558-
itkFloatingPointExceptionsTest FPOverFlow)
558+
itkFloatingPointExceptionsTest FPOverflow)
559559
itk_add_test(NAME itkFloatingPointExceptionsTest4 COMMAND ITKCommon1TestDriver
560-
itkFloatingPointExceptionsTest FPUnderFlow)
560+
itkFloatingPointExceptionsTest FPUnderflow)
561561

562562
set_tests_properties(
563563
itkFloatingPointExceptionsTest1

Modules/Core/Common/test/itkFloatingPointExceptionsTest.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ itkFloatingPointExceptionsTest(int argc, char * argv[])
8282
std::cout.flush();
8383
}
8484
}
85-
if (testName == "FPOverFlow")
85+
if (testName == "FPOverflow")
8686
{
8787
std::cout << "Testing floating point overflow" << std::endl;
8888
std::cout.flush();
@@ -103,7 +103,7 @@ itkFloatingPointExceptionsTest(int argc, char * argv[])
103103
std::cout.flush();
104104
}
105105
}
106-
if (testName == "FPUnderFlow")
106+
if (testName == "FPUnderflow")
107107
{
108108
std::cout << "Testing floating point underflow" << std::endl;
109109
std::cout.flush();

0 commit comments

Comments
 (0)