From 3b2e4639de929e640fe672e0d77e0faef3acc027 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 27 Jun 2017 10:53:12 +0100 Subject: Implementing Vector2d --- test/matrixtest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/matrixtest.cpp') 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 { -- cgit