From c33863ba89d12a5d9f36f4042f137658daa0e5bd Mon Sep 17 00:00:00 2001
From: Rashad Kanavath <rashad.kanavath@c-s.fr>
Date: Wed, 18 May 2016 07:59:53 +0200
Subject: [PATCH] BUG: missing semicolon in macro call

---
 .../Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx
index b201eb323a..6e6eb7301b 100644
--- a/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx
+++ b/Modules/Adapters/GdalAdapters/test/otbOGRDataSourceWrapperNew.cxx
@@ -111,9 +111,9 @@ BOOST_AUTO_TEST_CASE(OGRDataSource_mem_add_n_del_layer)
 BOOST_AUTO_TEST_CASE(OGRDataSource_new_exceptions)
 {
   BOOST_CHECK_THROW(ogr::DataSource::New("name-that-shall-not-exist.shp", ogr::DataSource::Modes::Read),
-    itk::ExceptionObject);
+                    itk::ExceptionObject);
   BOOST_CHECK_THROW(ogr::DataSource::New("unsupported.extension", ogr::DataSource::Modes::Overwrite),
-    itk::ExceptionObject)
+                    itk::ExceptionObject);
 }
 
 BOOST_AUTO_TEST_CASE(OGRDataSource_new_shp)
-- 
GitLab