Update file jacobisvd.cpp
diff --git a/test/jacobisvd.cpp b/test/jacobisvd.cpp
index daf24a7..401adf0 100644
--- a/test/jacobisvd.cpp
+++ b/test/jacobisvd.cpp
@@ -60,7 +60,9 @@
 }
 
 template <typename MatrixType>
-void jacobisvd_verify_assert(const MatrixType& m = MatrixType()) {
+void jacobisvd_verify_assert(const MatrixType& input = MatrixType()) {
+  MatrixType m(input.rows(), input.cols());
+  svd_fill_random(m);
   svd_verify_assert<MatrixType, 0>(m);
   svd_verify_assert<MatrixType, ColPivHouseholderQRPreconditioner>(m);
   svd_verify_assert<MatrixType, HouseholderQRPreconditioner>(m);