This commit is contained in:
John Lancaster
2026-02-21 10:06:41 -06:00
parent 9efff690cf
commit b23a331953

View File

@@ -13,7 +13,7 @@ class TestDAGSetInit:
assert len(s) == 0
assert set(s) == set()
assert list(s) == []
assert tuple(s) == tuple()
assert tuple(s) == ()
def test_from_set(self) -> None:
s = DAGSetView({1, 2, 3})