File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ def test_x2sys_cross_region_interpolation_numpoints():
271
271
)
272
272
273
273
assert isinstance (output , pd .DataFrame )
274
- if platform .machine () == " arm64" :
274
+ if platform .machine () in { "aarch64" , " arm64"} :
275
275
assert output .shape == (3894 , 12 )
276
276
# Check crossover errors (z_X) and mean value of observables (z_M)
277
277
npt .assert_allclose (output .z_X .mean (), - 138.23215 , rtol = 1e-4 )
@@ -299,7 +299,7 @@ def test_x2sys_cross_trackvalues():
299
299
output = x2sys_cross (tracks = ["@tut_ship.xyz" ], tag = tag , trackvalues = True )
300
300
301
301
assert isinstance (output , pd .DataFrame )
302
- if platform .machine () == " arm64" :
302
+ if platform .machine () in { "aarch64" , " arm64"} :
303
303
assert output .shape == (14374 , 12 )
304
304
# Check mean of track 1 values (z_1) and track 2 values (z_2)
305
305
npt .assert_allclose (output .z_1 .mean (), - 2422.973372 , rtol = 1e-4 )
You can’t perform that action at this time.
0 commit comments