aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrixtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/matrixtest.cpp')
-rw-r--r--test/matrixtest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp
index ce4e9187..8ee350f6 100644
--- a/test/matrixtest.cpp
+++ b/test/matrixtest.cpp
@@ -25,7 +25,7 @@ bool matrixAssign()
yage::Matrix<4, 5, int> m;
m[2][3]=5;
- return m[2][3]==4;
+ return m[2][3]==5;
}
bool matrixAddition()
@@ -63,7 +63,7 @@ int main()
{
TestBench tb;
- bool all_passed=true;
+ bool all_passed=false;
try
{