IVGCVSW-5665 Basic NN Driver support for next OS Version


Signed-off-by: Kevin May <kevin.may@arm.com>
Signed-off-by: Sadik Armagan <sadik.armagan@arm.com>
Change-Id: I1e1db52322092c6b1b7ac6183c3adc90aabcec24
diff --git a/test/Tests.cpp b/test/Tests.cpp
index 3b629a7..0ef142d 100644
--- a/test/Tests.cpp
+++ b/test/Tests.cpp
@@ -20,9 +20,9 @@
     // Making the driver object on the stack causes a weird libc error, so make it on the heap instead
     auto driver = std::make_unique<ArmnnDriver>(DriverOptions(armnn::Compute::CpuRef));
 
-    DeviceStatus status = driver->getStatus();
+    V1_0::DeviceStatus status = driver->getStatus();
     // Note double-parentheses to avoid compile error from Boost trying to printf the DeviceStatus
-    BOOST_TEST((status == DeviceStatus::AVAILABLE));
+    BOOST_TEST((status == V1_0::DeviceStatus::AVAILABLE));
 }
 
 BOOST_AUTO_TEST_CASE(TestCapabilities)