diff --git a/slsDetectorSoftware/tests/test-CmdProxy.cpp b/slsDetectorSoftware/tests/test-CmdProxy.cpp index 5e1067e9d..d4615dfeb 100644 --- a/slsDetectorSoftware/tests/test-CmdProxy.cpp +++ b/slsDetectorSoftware/tests/test-CmdProxy.cpp @@ -527,7 +527,8 @@ TEST_CASE("gappixels", "[.cmd]") { bool quad = det.getQuad().squash(false); bool fullModule = (det.getModuleGeometry().y % 2 == 0); - if (det_type == defs::JUNGFRAU || (det_type == defs::EIGER && (quad || fullModule))) { + if (det_type == defs::JUNGFRAU || + (det_type == defs::EIGER && (quad || fullModule))) { auto prev_val = det.getGapPixelsinCallback(); { std::ostringstream oss; diff --git a/slsDetectorSoftware/tests/test-SharedMemory.cpp b/slsDetectorSoftware/tests/test-SharedMemory.cpp index 682abbfa4..5ba3c20a2 100644 --- a/slsDetectorSoftware/tests/test-SharedMemory.cpp +++ b/slsDetectorSoftware/tests/test-SharedMemory.cpp @@ -101,7 +101,8 @@ TEST_CASE("Move SharedMemory", "[detector]") { shm2 = std::move(shm); // shm is now a moved from object! CHECK(shm2()->x == 9); - REQUIRE_THROWS(shm()); // trying to access should throw instead of returning a nullptr + REQUIRE_THROWS( + shm()); // trying to access should throw instead of returning a nullptr CHECK(shm2.getName() == std::string("/slsDetectorPackage_detector_") + std::to_string(shm_id)); shm2.removeSharedMemory(); diff --git a/slsSupportLib/include/sls/versionAPI.h b/slsSupportLib/include/sls/versionAPI.h index 033ed189d..af24f1709 100644 --- a/slsSupportLib/include/sls/versionAPI.h +++ b/slsSupportLib/include/sls/versionAPI.h @@ -9,5 +9,5 @@ #define APIMYTHEN3 "7.0.0.rc3 0x230130" #define APIMOENCH "7.0.0.rc3 0x230130" #define APIEIGER "7.0.0.rc3 0x230130" -#define APILIB "7.0.0.rc4 0x230214" -#define APIRECEIVER "7.0.0.rc4 0x230214" +#define APILIB "7.0.0.rc4 0x230214" +#define APIRECEIVER "7.0.0.rc4 0x230214"