Remove Eigen2ToEigen3 migration page (obsolete since 3.3)
diff --git a/test/adjoint.cpp b/test/adjoint.cpp
index 7c8081e..e2bfa6d 100644
--- a/test/adjoint.cpp
+++ b/test/adjoint.cpp
@@ -177,6 +177,10 @@
     c.col(j).head(j) = c.row(j).head(j);
   }
 
+  for (int j = 0; j < 10; ++j) {
+    c.col(j) = c.row(j);
+  }
+
   a.conservativeResize(1,1);
   a = a.transpose();