From 3490f564825ad7e7f63827788c7e378d8e781cb0 Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Wed, 22 Jan 2020 21:56:11 +0100 Subject: [PATCH] Wrong high rate veto status value in the test --- tests/test_daq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_daq.py b/tests/test_daq.py index a39962f..ef79545 100644 --- a/tests/test_daq.py +++ b/tests/test_daq.py @@ -245,7 +245,7 @@ class TestSummaryslices(unittest.TestCase): } for dom_id, high_rate_veto in dct_high_rate_veto.items(): frame = s[s.dom_id == dom_id] - assert any(get_channel_flags(s.hrv[0])[0]) == high_rate_veto + assert any(get_channel_flags(frame.hrv[0])[0]) == high_rate_veto def test_max_sequence_number(self): s = self.ss.slices[0] -- GitLab