From 48ccbfebff7c108f2540b8b48e069ebc3ebe1b63 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Tue, 27 Feb 2024 15:55:56 +0100 Subject: [PATCH] fix test --- tangostationcontrol/test/devices/sdp/test_beamlet_device.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tangostationcontrol/test/devices/sdp/test_beamlet_device.py b/tangostationcontrol/test/devices/sdp/test_beamlet_device.py index f8b1c74ed..062113ed1 100644 --- a/tangostationcontrol/test/devices/sdp/test_beamlet_device.py +++ b/tangostationcontrol/test/devices/sdp/test_beamlet_device.py @@ -135,11 +135,11 @@ class TestBeamletDevice(base.TestCase): self.assertListEqual( defaults["FPGA_beamlet_output_multiple_hdr_eth_destination_mac_RW"], - [MACs + [""] * (N_bdo_destinations_mm - 4)] * N_pn, + [MACs + ["00:00:00:00:00:00"] * (N_bdo_destinations_mm - 4)] * N_pn, ) self.assertListEqual( defaults["FPGA_beamlet_output_multiple_hdr_ip_destination_address_RW"], - [IPs + [""] * (N_bdo_destinations_mm - 4)] * N_pn, + [IPs + ["0.0.0.0"] * (N_bdo_destinations_mm - 4)] * N_pn, ) self.assertListEqual( defaults["FPGA_beamlet_output_multiple_hdr_udp_destination_port_RW"], -- GitLab