Make size odd for transposeInPlace test to make sure we hit the scalar path.
diff --git a/test/array_cwise.cpp b/test/array_cwise.cpp
index 950cc96..b3fb59b 100644
--- a/test/array_cwise.cpp
+++ b/test/array_cwise.cpp
@@ -496,7 +496,7 @@
   m2.transposeInPlace();
   VERIFY_IS_APPROX(m2, m1);
   // Check vectorized inplace transpose.
-  ArrayType m5 = ArrayType::Random(130, 130);
+  ArrayType m5 = ArrayType::Random(131, 131);
   ArrayType m6 = m5;
   m6.transposeInPlace();
   VERIFY_IS_APPROX(m6, m5.transpose());