diff --git a/slsDetectorSoftware/tests/Caller/test-Caller-xilinx-chiptestboard.cpp b/slsDetectorSoftware/tests/Caller/test-Caller-xilinx-chiptestboard.cpp index 3849be6fb..ac0e2dd6e 100644 --- a/slsDetectorSoftware/tests/Caller/test-Caller-xilinx-chiptestboard.cpp +++ b/slsDetectorSoftware/tests/Caller/test-Caller-xilinx-chiptestboard.cpp @@ -19,17 +19,11 @@ using test::PUT; /* dacs */ +// not implemented at the moment TEST_CASE("configtransceiver", "[.detectorintegration]") { Detector det; Caller caller(&det); - auto det_type = det.getDetectorType().squash(); - - if (det_type == defs::XILINX_CHIPTESTBOARD) { - REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, GET)); - REQUIRE_NOTHROW(caller.call("configtransceiver", {}, -1, PUT)); - } else { - REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, PUT)); - REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, GET)); - } + REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, PUT)); + REQUIRE_THROWS(caller.call("configtransceiver", {}, -1, GET)); } } // namespace sls