()
| 314 | "behavior is not specified or guaranteed by NumPy." |
| 315 | ) |
| 316 | def test_arange_cast_float_int_step(): |
| 317 | darr = da.arange(3.3, -9.1, -0.25, chunks=3, dtype="i8") |
| 318 | nparr = np.arange(3.3, -9.1, -0.25, dtype="i8") |
| 319 | assert_eq(darr, nparr) |
| 320 | |
| 321 | |
| 322 | def test_arange_float_step(): |