Skip to content

Commit

Permalink
COMP: Fix macro spelling in itkOpenCVImageBridgeRGBTest.cxx
Browse files Browse the repository at this point in the history
Fix `ITK_TRY_EXPECT_NO_EXCEPTION` macro spelling in
`itkOpenCVImageBridgeRGBTest.cxx`.

Fixes:
```
Error when building the ITK-5.4rc02:
C:\lib\ITK-5.4rc02\Modules\Video\BridgeOpenCV\test\itkOpenCVImageBridgeRGBTest.cxx(156,3):
error C3861: ITK_TRY_EXPECT_NO_EXCEPTIION
identifier not found
```
  • Loading branch information
jhlegarreta committed Mar 31, 2024
1 parent ffc768a commit 299ce20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ itkOpenCVImageBridgeTestTemplatedRGB(char * argv0, char * argv1)
auto reader = ReaderType::New();
reader->SetFileName(argv1);

ITK_TRY_EXPECT_NO_EXCEPTIION(reader->Update());
ITK_TRY_EXPECT_NO_EXCEPTION(reader->Update());


typename ImageType::Pointer baselineImage = reader->GetOutput();
Expand Down

0 comments on commit 299ce20

Please sign in to comment.