Skip to content

Commit

Permalink
test_direct_api.py -> add missing str() call for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdegenstein authored Feb 21, 2024
1 parent 88586e4 commit 88829ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_direct_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -2993,7 +2993,7 @@ def test_group_by_str_repr(self):
" <build123d.topology.Edge at 0x1277fec6d90>]]",
]

self.assertDunderStrEqual(nonagon.edges().group_by(Axis.X), expected)
self.assertDunderStrEqual(str(nonagon.edges().group_by(Axis.X)), expected)

expected_repr = (
"[[<build123d.topology.Edge object at 0x000001277FEC6D90>],"
Expand Down

0 comments on commit 88829ba

Please sign in to comment.