summaryrefslogtreecommitdiff
path: root/src/matrixOperations/zeros
diff options
context:
space:
mode:
Diffstat (limited to 'src/matrixOperations/zeros')
-rw-r--r--src/matrixOperations/zeros/testMatrixZeros.c10
1 files changed, 5 insertions, 5 deletions
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;
}