Skip to content

Commit

Permalink
revert(SC-686): Re-added tuple containing (Group, "comment") to `te…
Browse files Browse the repository at this point in the history
…st_attrsmodel.py`
  • Loading branch information
abnepc committed Nov 9, 2023
1 parent 2504cff commit b016de3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions epyqlib/tests/test_attrsmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ def merge(name, *types):
),
((Parameter, "value"),),
merge("uuid", *types.types.values()),
(,(Group, "comment")),
)


Expand All @@ -128,22 +129,25 @@ def make_a_model(
)

group_a = group_cls(
name="Group A", uuid="f5b7569e-9d7e-4433-a034-29c3e04d1ad4", comment=""
name="Group A",
uuid="f5b7569e-9d7e-4433-a034-29c3e04d1ad4",
)
parameter_a_a = parameter_cls(
name="Parameter A A",
uuid="df286eb3-67f0-42d6-b56a-8ee1ded49248",
)
group_a_b = group_cls(
name="Group A B", uuid="aee15e15-c5df-4e73-ae1a-9a5d4eaa798a", comment=""
name="Group A B",
uuid="aee15e15-c5df-4e73-ae1a-9a5d4eaa798a",
)
parameter_b = parameter_cls(
name="Parameter B",
value=42,
uuid="a1fd7abb-4760-472e-bc94-1ef4d2cfad62",
)
group_c = group_cls(
name="Group C", uuid="2777e016-a3e6-470d-b20c-7a44904df710", comment=""
name="Group C",
uuid="2777e016-a3e6-470d-b20c-7a44904df710",
)
parameter_d = parameter_cls(
name="Parameter D",
Expand Down

0 comments on commit b016de3

Please sign in to comment.