From 1b027de1ed53138a0a8dcfe923f5dafe7cb447fd Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 3 May 2004 14:17:57 +0000 Subject: [PATCH] Fix. git-svn-id: https://svn.dealii.org/trunk@9142 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/block_sparse_matrix_iterator_04.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/bits/block_sparse_matrix_iterator_04.cc b/tests/bits/block_sparse_matrix_iterator_04.cc index 4ac64830ad..f479f0d60e 100644 --- a/tests/bits/block_sparse_matrix_iterator_04.cc +++ b/tests/bits/block_sparse_matrix_iterator_04.cc @@ -58,11 +58,11 @@ void test () // this test, above assertion is ok, but an // elementwise one is not (we fail in the // first line) - Assert (it.row() == it2.row(), ExcInternalError()); - Assert (it.block_row() == it2.block_row(), ExcInternalError()); - Assert (it.column() == it2.column(), ExcInternalError()); - Assert (it.block_column() == it2.block_column(), ExcInternalError()); - Assert (it.index() == it2.index(), ExcInternalError()); + Assert (it->row() == it2->row(), ExcInternalError()); + Assert (it->block_row() == it2->block_row(), ExcInternalError()); + Assert (it->column() == it2->column(), ExcInternalError()); + Assert (it->block_column() == it2->block_column(), ExcInternalError()); + Assert (it->index() == it2->index(), ExcInternalError()); deallog << "OK" << std::endl; } -- 2.39.5