IVGCVSW-4485 Remove Boost assert

Signed-off-by: Narumol Prangnawarat <narumol.prangnawarat@arm.com>
Change-Id: If602024a339df7548333e470545f9400c3daf7b3
diff --git a/test/TestTensor.hpp b/test/TestTensor.hpp
index 623c9fb..1cd1950 100644
--- a/test/TestTensor.hpp
+++ b/test/TestTensor.hpp
@@ -6,6 +6,8 @@
 
 #include "../ArmnnDriver.hpp"
 
+#include <armnn/utility/Assert.hpp>
+
 namespace driverTestHelpers
 {
 
@@ -17,7 +19,7 @@
     : m_Shape{shape}
     , m_Data{data}
     {
-        BOOST_ASSERT(m_Shape.GetNumElements() == m_Data.size());
+        ARMNN_ASSERT(m_Shape.GetNumElements() == m_Data.size());
     }
 
     hidl_vec<uint32_t> GetDimensions() const;