Skip to content

Commit b816d10

Browse files
committed
Speed up flat sky query_disc test
1 parent 08e9215 commit b816d10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maps/tests/flatsky_maps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
numpy.asarray(alpha) / core.G3Units.deg * u.degree,
123123
numpy.asarray(delta) / core.G3Units.deg * u.degree,
124124
).ravel()
125-
for a in numpy.linspace(numpy.min(alpha), numpy.max(alpha), 20):
126-
for d in numpy.linspace(numpy.min(delta), numpy.max(delta), 20):
125+
for a in numpy.linspace(numpy.min(alpha), numpy.max(alpha), 5):
126+
for d in numpy.linspace(numpy.min(delta), numpy.max(delta), 5):
127127
avec.append(a)
128128
dvec.append(d)
129129
rvec.append(radius)

0 commit comments

Comments
 (0)