From 7fa6add13551c28e929ac36d10f6e755a6b56d0e Mon Sep 17 00:00:00 2001 From: Christopher Sherman Date: Thu, 1 Feb 2024 10:50:41 -0800 Subject: [PATCH] Updating the reporting dataclass for geos_ats --- geos_ats_package/geos_ats/reporting.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/geos_ats_package/geos_ats/reporting.py b/geos_ats_package/geos_ats/reporting.py index f339449..64bf328 100644 --- a/geos_ats_package/geos_ats/reporting.py +++ b/geos_ats_package/geos_ats/reporting.py @@ -33,7 +33,7 @@ } -@dataclass( frozen=True ) +@dataclass class TestStepRecord: status: atsut._StatusCode log: str @@ -42,7 +42,7 @@ class TestStepRecord: elapsed: float -@dataclass( frozen=True ) +@dataclass class TestCaseRecord: steps: dict status: atsut._StatusCode @@ -52,7 +52,7 @@ class TestCaseRecord: resources: int -@dataclass( frozen=True ) +@dataclass class TestGroupRecord: tests: list status: atsut._StatusCode