From 5c1c162192bcd68b3d9d3d8129be955d3b285f4f Mon Sep 17 00:00:00 2001 From: Nathaniel Starkman Date: Mon, 13 Apr 2026 17:29:26 -0400 Subject: [PATCH] Fix for Comparison of identical values Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Signed-off-by: Nathaniel Starkman --- tests/test_misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_misc.py b/tests/test_misc.py index b26adbd..f76a708 100644 --- a/tests/test_misc.py +++ b/tests/test_misc.py @@ -87,7 +87,7 @@ def test_gt(): def test_eq(): # Compare with other OptionalDependencyEnum instances - assert OptDeps.PACKAGING == OptDeps.PACKAGING + assert OptDeps.PACKAGING is OptDeps.PACKAGING assert not OptDeps.PACKAGING == OptDeps.PYTEST # noqa: SIM201 # Compare with an unsupported type