From af51776eef301a76cb06a0a3770cd1ac3528db14 Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Wed, 9 Jul 2025 17:20:46 +0200 Subject: [PATCH] minor test typo --- slsReceiverSoftware/src/Receiver.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/slsReceiverSoftware/src/Receiver.cpp b/slsReceiverSoftware/src/Receiver.cpp index 84bcd485d..d81ecb33a 100644 --- a/slsReceiverSoftware/src/Receiver.cpp +++ b/slsReceiverSoftware/src/Receiver.cpp @@ -29,9 +29,6 @@ Receiver::~Receiver() = default; Receiver::Receiver(uint16_t port) { validatePortNumber(port); - if (port == 9999) { - throw sls::RuntimeError("Throwing for testing purposes. "); - } tcpipInterface = make_unique(port); }