From 1fb7352378c6472e7f221d42aae4e2f92df50455 Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Thu, 17 Sep 2020 12:13:09 +0200 Subject: [PATCH] added missing unit in test --- slsDetectorSoftware/tests/test-CmdProxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slsDetectorSoftware/tests/test-CmdProxy.cpp b/slsDetectorSoftware/tests/test-CmdProxy.cpp index 6ba964c5b..a169cf5d5 100644 --- a/slsDetectorSoftware/tests/test-CmdProxy.cpp +++ b/slsDetectorSoftware/tests/test-CmdProxy.cpp @@ -337,7 +337,7 @@ TEST_CASE("exptime", "[.cmd][.time]") { //Get exptime of single module std::ostringstream oss; proxy.Call("exptime", {}, 0, GET, oss); - REQUIRE(oss.str() == "exptime 0\n"); + REQUIRE(oss.str() == "exptime 0ns\n"); } det.setExptime(-1, prev_val); }