Skip to content

Commit c9dddc3

Browse files
committed
Fix breaking tests (incorrect return type)
1 parent 8dfb1c5 commit c9dddc3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/properties/test_band_structure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,19 @@ def test_default_quantities(self, n_bands: Optional[int]):
6262
(
6363
None,
6464
[[3, -2], [3, 1], [4, -2], [5, -1], [4, 0], [2, 0], [2, 1], [4, -3]],
65-
False,
65+
(),
6666
(None, None),
6767
),
6868
(
6969
[[2, 2], [0, 0]],
7070
[[3, -2], [3, 1], [4, -2], [5, -1], [4, 0], [2, 0], [2, 1], [4, -3]],
71-
False,
71+
(),
7272
(None, None),
7373
), # `value` and `occupation` must have same shape
7474
(
7575
[[0, 2], [0, 1], [0, 2], [0, 2], [0, 1.5], [0, 1.5], [0, 1], [0, 2]],
7676
None,
77-
False,
77+
(),
7878
(None, None),
7979
),
8080
(

0 commit comments

Comments
 (0)