Skip to content

Commit

Permalink
💬 Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
arafune committed Apr 12, 2024
1 parent 208659a commit 23791be
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tests/test_bz_spec.py
Original file line number Diff line number Diff line change
@@ -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],
],
),
Expand Down

0 comments on commit 23791be

Please sign in to comment.