From a0837f43f9bb80375c8c53950dd6877e8d072a75 Mon Sep 17 00:00:00 2001
From: Lukas Cejka <lukas.ostatek@gmail.com>
Date: Tue, 26 Mar 2019 14:20:34 +0100
Subject: [PATCH] Removed commented out getType test call, as the test is not
 implemented in such a way to test all formats.

---
 src/UnitTests/Matrices/SparseMatrixTest.h | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/UnitTests/Matrices/SparseMatrixTest.h b/src/UnitTests/Matrices/SparseMatrixTest.h
index c3716c116f..5baeb42791 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 >();
-- 
GitLab