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"
...@@ -374,6 +374,9 @@ class BstHdf5Writer(HDF5Writer): ...@@ -374,6 +374,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
current_group.create_dataset( current_group.create_dataset(
...@@ -414,6 +417,9 @@ class XstHdf5Writer(HDF5Writer): ...@@ -414,6 +417,9 @@ class XstHdf5Writer(HDF5Writer):
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
# structure # structure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment