From e585ef07cd57f95a7c2d7cc631c04b276d25f956 Mon Sep 17 00:00:00 2001 From: Konstantin Korotkov Date: Thu, 13 Jun 2024 18:42:32 +0200 Subject: [PATCH] Fix test --- tests/core/test_shf_vector_data.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/core/test_shf_vector_data.py b/tests/core/test_shf_vector_data.py index 0c4fbc6..ea2f14c 100644 --- a/tests/core/test_shf_vector_data.py +++ b/tests/core/test_shf_vector_data.py @@ -317,6 +317,7 @@ def test_shf_waveform_logger_vector(vector_length, x, y): holdoff_errors_reslog=10, holdoff_errors_readout=11, holdoff_errors_spectr=12, + first_sample_timestamp=13, ), ShfDemodulatorVectorExtraHeader( timestamp=0, @@ -385,6 +386,7 @@ def __getattr__(self, item): holdoff_errors_reslog=10, holdoff_errors_readout=11, holdoff_errors_spectr=12, + first_sample_timestamp=13, ), np.array([50 + 100j, 100 + 150j], dtype=np.complex64), ), @@ -490,7 +492,7 @@ def test_encoding_decoding_are_invers_shf_demod_sample(header, data): ), ), ( - ShfResultLoggerVectorExtraHeader(0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0), + ShfResultLoggerVectorExtraHeader(0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), SHFDemodSample( np.array([6, 3], dtype=np.int64), np.array([7, 2], dtype=np.int64),