aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/array_replicate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/array_replicate.cpp')
-rw-r--r--test/array_replicate.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/array_replicate.cpp b/test/array_replicate.cpp
index cd0f65f26..a23ac7c6f 100644
--- a/test/array_replicate.cpp
+++ b/test/array_replicate.cpp
@@ -76,11 +76,11 @@ template<typename MatrixType> void replicate(const MatrixType& m)
void test_array_replicate()
{
for(int i = 0; i < g_repeat; i++) {
- CALL_SUBTEST( replicate(Matrix<float, 1, 1>()) );
- CALL_SUBTEST( replicate(Vector2f()) );
- CALL_SUBTEST( replicate(Vector3d()) );
- CALL_SUBTEST( replicate(Vector4f()) );
- CALL_SUBTEST( replicate(VectorXf(16)) );
- CALL_SUBTEST( replicate(VectorXcd(10)) );
+ CALL_SUBTEST_1( replicate(Matrix<float, 1, 1>()) );
+ CALL_SUBTEST_2( replicate(Vector2f()) );
+ CALL_SUBTEST_3( replicate(Vector3d()) );
+ CALL_SUBTEST_4( replicate(Vector4f()) );
+ CALL_SUBTEST_5( replicate(VectorXf(16)) );
+ CALL_SUBTEST_6( replicate(VectorXcd(10)) );
}
}