diff --git a/src/UnitTests/Matrices/SparseMatrixTest.h b/src/UnitTests/Matrices/SparseMatrixTest.h
index c3716c116fedbcb3ba5f90a48039298d06c5b09c..5baeb42791a526731277adfaa20715a533ab956c 100644
--- a/src/UnitTests/Matrices/SparseMatrixTest.h
+++ b/src/UnitTests/Matrices/SparseMatrixTest.h
@@ -22,20 +22,6 @@ using CSR_host_int = TNL::Matrices::CSR< int, TNL::Devices::Host, int >;
 using CSR_cuda_float = TNL::Matrices::CSR< float, TNL::Devices::Cuda, int >;
 using CSR_cuda_int = TNL::Matrices::CSR< int, TNL::Devices::Cuda, int >;
 
-//// test_getType is not general enough yet. DO NOT TEST IT YET.
-
-//TEST( SparseMatrixTest, CSR_GetTypeTest_Host )
-//{
-//    host_test_GetType< CSR_host_float, CSR_host_int >();
-//}
-//
-//#ifdef HAVE_CUDA
-//TEST( SparseMatrixTest, CSR_GetTypeTest_Cuda )
-//{
-//    cuda_test_GetType< CSR_cuda_float, CSR_cuda_int >();
-//}
-//#endif
-
 TEST( SparseMatrixTest, CSR_perforSORIterationTest_Host )
 {
     test_PerformSORIteration< CSR_host_float >();