Skip to content

Commit

Permalink
test (0, 1) instead of (0, 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung committed Oct 30, 2023
1 parent 4130014 commit 0544493
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/states/states_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def test_indices_to_strings():
[
(4, (2, 2)),
(4, (1, 2)),
(4, (0, 2)),
(4, (0, 1)),
(4, (0, 0)),
],
)
Expand All @@ -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)),
],
)
Expand All @@ -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)),
],
)
Expand All @@ -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)),
],
)
Expand Down

0 comments on commit 0544493

Please sign in to comment.