From 0544493489e6abcf8597af759a5201a7136b3abd Mon Sep 17 00:00:00 2001 From: "Kevin J. Sung" Date: Mon, 30 Oct 2023 09:14:59 -0400 Subject: [PATCH] test (0, 1) instead of (0, 2) --- tests/states/states_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/states/states_test.py b/tests/states/states_test.py index ac4a5ba23..34611ab5f 100644 --- a/tests/states/states_test.py +++ b/tests/states/states_test.py @@ -85,7 +85,7 @@ def test_indices_to_strings(): [ (4, (2, 2)), (4, (1, 2)), - (4, (0, 2)), + (4, (0, 1)), (4, (0, 0)), ], ) @@ -104,7 +104,7 @@ def test_rdm_1_spin_summed(norb: int, nelec: tuple[int, int]): [ (4, (2, 2)), (4, (1, 2)), - (4, (0, 2)), + (4, (0, 1)), (4, (0, 0)), ], ) @@ -123,7 +123,7 @@ def test_rdm_1(norb: int, nelec: tuple[int, int]): [ (4, (2, 2)), (4, (1, 2)), - (4, (0, 2)), + (4, (0, 1)), (4, (0, 0)), ], ) @@ -142,7 +142,7 @@ def test_rdm_2_spin_summed(norb: int, nelec: tuple[int, int]): [ (4, (2, 2)), (4, (1, 2)), - (4, (0, 2)), + (4, (0, 1)), (4, (0, 0)), ], )