aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-06-27 10:53:12 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-06-27 10:53:12 +0100
commit3b2e4639de929e640fe672e0d77e0faef3acc027 (patch)
treeaad08ed80aa9663a09614de065f3d40dd347b23f /test
parent205f2459063a123cabd83fb66b3880a72fb357bf (diff)
downloadYAGE-3b2e4639de929e640fe672e0d77e0faef3acc027.tar.gz
YAGE-3b2e4639de929e640fe672e0d77e0faef3acc027.zip
Implementing Vector2d
Diffstat (limited to 'test')
-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
{