Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/itkProxTVImageFilterTest.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ int itkProxTVImageFilterTest( int argc, char * argv[] )
using FilterType = itk::ProxTVImageFilter< ImageType, ImageType >;
FilterType::Pointer filter = FilterType::New();

EXERCISE_BASIC_OBJECT_METHODS( filter, ProxTVImageFilter, ImageToImageFilter );
ITK_EXERCISE_BASIC_OBJECT_METHODS( filter, ProxTVImageFilter, ImageToImageFilter );

auto image = Create2DImage<ImageType>();
filter->SetInput(image);
Expand All @@ -127,7 +127,7 @@ int itkProxTVImageFilterTest( int argc, char * argv[] )
using Image3DType = itk::Image< PixelType, 3 >;
using Filter3DType = itk::ProxTVImageFilter< Image3DType, Image3DType >;
Filter3DType::Pointer filter3D = Filter3DType::New();
EXERCISE_BASIC_OBJECT_METHODS( filter3D, ProxTVImageFilter, ImageToImageFilter );
ITK_EXERCISE_BASIC_OBJECT_METHODS( filter3D, ProxTVImageFilter, ImageToImageFilter );
auto image3D = Create3DImage<Image3DType>();
filter3D->SetInput(image3D);
filter3D->Update();
Expand Down