Skip to content

Commit

Permalink
use dedicated variable in test_axis_limits test
Browse files Browse the repository at this point in the history
  • Loading branch information
unalmis committed Aug 1, 2023
1 parent da10561 commit f56dfd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_axis_limits.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def assert_is_continuous(
names = [x for x in names if not ("Boozer" in x or "_mn" in x or x == "B modes")]

num_points = 15
rho = np.linspace(start=0, stop=1, num=15) * delta
rho = np.linspace(start=0, stop=1, num=num_points) * delta
grid = LinearGrid(rho=rho, M=5, N=5, NFP=eq.NFP, sym=eq.sym)
assert grid.axis.size
integrate = surface_integrals_map(grid)
Expand Down

0 comments on commit f56dfd0

Please sign in to comment.