(self)
| 291 | assert_(new_m.flags.c_contiguous) |
| 292 | |
| 293 | def test_asarray_enforce_order(self): |
| 294 | # See Issue #6646 |
| 295 | m = np.eye(3).T |
| 296 | assert_(not m.flags.c_contiguous) |
| 297 | |
| 298 | new_m = asarray(m, order='C') |
| 299 | assert_(new_m.flags.c_contiguous) |
| 300 | |
| 301 | def test_fix_invalid(self): |
| 302 | # Checks fix_invalid. |