Skip to content
Snippets Groups Projects

WS-507: implemented more tests, which involved refactoring of some classes

Merged Janet Goldstein requested to merge WS-507-ingestion_manifest_creation into main
@@ -44,7 +44,7 @@ class InputGroup:
self.science_products = []
def __repr__(self) -> str:
return json.dumps(self.__dict__)
return repr(self.__dict__)
class IngestionManifest:
@@ -94,7 +94,7 @@ class OutputGroup:
self.ancillary_products = []
def __repr__(self):
return json.dumps(self.__dict__)
return repr(self.__dict__)
class AssociateGroup:
@@ -113,4 +113,4 @@ class AssociateGroup:
self.science_products = []
def __repr__(self):
return json.dumps(self.__dict__)
return repr(self.__dict__)
Loading