diff --git a/tests/test_bz_spec.py b/tests/test_bz_spec.py index 932d3c2c..6cbc7b75 100644 --- a/tests/test_bz_spec.py +++ b/tests/test_bz_spec.py @@ -1,22 +1,18 @@ """Test for utilitiy.bz.""" import numpy as np -import pytest from arpes.utilities import bz_spec -@pytest.mark.skip() def test_bz_points_for_hexagonal_lattice() -> None: """Test for bz_points_for_hexagonal_lattice.""" np.testing.assert_almost_equal( bz_spec.bz_points_for_hexagonal_lattice(), np.array( [ - [-1 / 3, np.sqrt(3) / 3], - [1 / 3, np.sqrt(3) / 3], - [2 / 3, 0], - [1 / 3, -np.sqrt(3) / 3], [-1 / 3, -np.sqrt(3) / 3], + [-1 / 3, -np.sqrt(3) / 3], + [-2 / 3, 0], [-2 / 3, 0], ], ),