From 7d389df70a3fce417782c95dd9bfe2ef28aee131 Mon Sep 17 00:00:00 2001 From: Tomas Oberhuber <tomas.oberhuber@fjfi.cvut.cz> Date: Sun, 9 Jun 2019 00:03:18 +0200 Subject: [PATCH] Fixing ArrayTest. --- src/UnitTests/Containers/ArrayTest.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UnitTests/Containers/ArrayTest.h b/src/UnitTests/Containers/ArrayTest.h index 65b8c8b1d4..777f565e6b 100644 --- a/src/UnitTests/Containers/ArrayTest.h +++ b/src/UnitTests/Containers/ArrayTest.h @@ -151,6 +151,7 @@ TYPED_TEST( ArrayTest, constructors ) ArrayType v( 10 ); EXPECT_EQ( v.getSize(), 10 ); + v = 0; // deep copy ArrayType w( v ); -- GitLab