Skip to content
Snippets Groups Projects
Commit e285441e authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-869: fix unit test

parent a5502c48
No related branches found
No related tags found
1 merge request!426Resolve L2SS-869 "Improve querying in stats writer"
...@@ -373,6 +373,9 @@ class BstHdf5Writer(HDF5Writer): ...@@ -373,6 +373,9 @@ class BstHdf5Writer(HDF5Writer):
def new_collector(self): def new_collector(self):
return BSTCollector() return BSTCollector()
def retrieve_attribute_values(self):
pass
def write_values_matrix(self, current_group): def write_values_matrix(self, current_group):
# store the BST values # store the BST values
...@@ -413,6 +416,9 @@ class XstHdf5Writer(HDF5Writer): ...@@ -413,6 +416,9 @@ class XstHdf5Writer(HDF5Writer):
f"{self.file_location}/{self.mode}_SB{self.subband_index}_" f"{self.file_location}/{self.mode}_SB{self.subband_index}_"
f"{time_str}{suffix}" f"{time_str}{suffix}"
) )
def retrieve_attribute_values(self):
pass
def write_values_matrix(self, current_group): def write_values_matrix(self, current_group):
# requires a function call to transform the xst_blocks in to the right # requires a function call to transform the xst_blocks in to the right
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment