Skip to content

Commit

Permalink
UnitTests: More Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed Aug 3, 2017
1 parent d231963 commit c268cac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions unit_test/sparse/Test_Sparse_mkl_sparseMatrixHandle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ template<class LO, class OffsetType, class scalar_type>
void testAllScalarsAndLocalOrdinals (bool& success,std::ostream &out)
{
{
typedef int LO;
out << "Test LocalOrdinalType=int" << endl;
//Teuchos::OSTab tab0 (out);
{
Expand Down Expand Up @@ -362,7 +361,7 @@ void test_mkl_sparseMatrixHandle()
std::ostream out(&null_buffer);
bool success = true;
out << "Run test" << endl;
testAllScalarsAndLocalOrdinals <scalar_t, lno_t, size_type>(success, out);
testAllScalarsAndLocalOrdinals <lno_t, size_type, scalar_t>(success, out);
EXPECT_TRUE( success);
}

Expand Down

0 comments on commit c268cac

Please sign in to comment.