diff --git a/CMakeLists.txt b/CMakeLists.txt index b9b76ee34..ef770b344 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # ------------------------------------------------------------------------------# -# © 2021. Triad National Security, LLC. All rights reserved. This program was +# © 2025. Triad National Security, LLC. All rights reserved. This program was # produced under U.S. Government contract 89233218CNA000001 for Los Alamos # National Laboratory (LANL), which is operated by Triad National Security, LLC # for the U.S. Department of Energy/National Nuclear Security Administration. @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.24) -set(SPINER_VERSION 1.6.4) +set(SPINER_VERSION 1.7.0) project( spiner VERSION ${SPINER_VERSION} @@ -90,7 +90,7 @@ if(NOT TARGET ports-of-call::ports-of-call) FetchContent_Declare( ports-of-call GIT_REPOSITORY https://github.com/lanl/ports-of-call - GIT_TAG v1.5.1 # TODO: update if needed + GIT_TAG v2.0.0 # TODO: update if needed ) set(SPINER_DEP_LIST "ports-of-call") endif() diff --git a/test/test.cpp b/test/test.cpp index cfddb9f0a..1086e1f03 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -792,12 +792,13 @@ SCENARIO("Copying a DataBox to device", "[DataBox][GetOnDevice]") { printf("free db_host\n"); free(db_host); } - GIVEN("An empty databox"); - DataBox db; - WHEN("We copy it to device") { - DataBox db2 = db.getOnDevice(); - THEN("The new object is still empty") { - REQUIRE(db.dataStatus() == Spiner::DataStatus::Empty); + GIVEN("An empty databox") { + DataBox db; + WHEN("We copy it to device") { + DataBox db2 = db.getOnDevice(); + THEN("The new object is still empty") { + REQUIRE(db.dataStatus() == Spiner::DataStatus::Empty); + } } } }