From ede0e6afd00ae9b450221382deb8bade0bb4addb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Rey?= Date: Mon, 31 Mar 2025 01:31:55 +0200 Subject: [PATCH] Fix --- tests/unit/autojac/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/autojac/test_utils.py b/tests/unit/autojac/test_utils.py index 614824125..91fa4521b 100644 --- a/tests/unit/autojac/test_utils.py +++ b/tests/unit/autojac/test_utils.py @@ -129,7 +129,7 @@ def test_get_leaf_tensors_empty_roots(): """Tests that _get_leaf_tensors returns no leaves when roots is the empty set.""" leaves = _get_leaf_tensors(tensors=[], excluded=set()) - assert set(leaves) == set({}) + assert set(leaves) == set() def test_get_leaf_tensors_excluded_root():