From 6ea6a7ee7cf13d7b38ac451f2a3df5571db65a2c Mon Sep 17 00:00:00 2001 From: Daniel Brunner <0xFEEDC0DE64@gmail.com> Date: Tue, 22 Aug 2017 21:36:28 +0200 Subject: [PATCH] Fixed wrong test --- tst_qfixedsizematrixtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tst_qfixedsizematrixtest.cpp b/tst_qfixedsizematrixtest.cpp index 7e3bc81..be1ec4a 100644 --- a/tst_qfixedsizematrixtest.cpp +++ b/tst_qfixedsizematrixtest.cpp @@ -132,7 +132,7 @@ void QFixedSizeMatrixTest::copyConstructorTest() { FixedSizeMatrix matrix { demoData2x4 }; FixedSizeMatrix otherMatrix { matrix }; - verifyData(matrix, demoData2x4); + verifyData(otherMatrix, demoData2x4); } void QFixedSizeMatrixTest::assignmentOperatorTest()