From 74f515c607592aa4bfbd03bdbd68fb365d71e60f Mon Sep 17 00:00:00 2001 From: torset Date: Wed, 11 Feb 2009 11:14:05 +0000 Subject: Update --- src/matrixOperations/zeros/testMatrixZeros.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/matrixOperations/zeros') diff --git a/src/matrixOperations/zeros/testMatrixZeros.c b/src/matrixOperations/zeros/testMatrixZeros.c index 37f0596b..b6ebe36f 100644 --- a/src/matrixOperations/zeros/testMatrixZeros.c +++ b/src/matrixOperations/zeros/testMatrixZeros.c @@ -108,13 +108,13 @@ static void czerosaTest ( void ) -static int testEye(void) { +static int testZeros(void) { - printf("\n>>>> Matrix ONES Tests\n"); - printf("\t>>>> Matrix Double Realt Tests\n"); + printf("\n>>>> Matrix ZEROS Tests\n"); + printf("\t>>>> Matrix Double Real Tests\n"); dzerosaTest(); - printf("\n\n\t>>>> Matrix Float Realt Tests\n"); + printf("\n\n\t>>>> Matrix Float Real Tests\n"); szerosaTest(); printf("\n\n\n"); @@ -131,7 +131,7 @@ static int testEye(void) { int main(void) { - assert(testEye() == 0); + assert(testZeros() == 0); return 0; } -- cgit