forgot to include the update of the qr test
diff --git a/test/qr.cpp b/test/qr.cpp
index be9e97a..9ce8084 100644
--- a/test/qr.cpp
+++ b/test/qr.cpp
@@ -66,4 +66,13 @@
     CALL_SUBTEST( qr(MatrixXcd(5,5)) );
     CALL_SUBTEST( qr(MatrixXcd(7,3)) );
   }
+
+  // small isFullRank test
+  {
+    Matrix3d mat;
+    mat << 1, 45, 1, 2, 2, 2, 1, 2, 3;
+    VERIFY(mat.qr().isFullRank());
+    mat << 1, 1, 1, 2, 2, 2, 1, 2, 3;
+    VERIFY(!mat.qr().isFullRank());
+  }
 }