aboutsummaryrefslogtreecommitdiff
path: root/test/Tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Tests.cpp')
-rw-r--r--test/Tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests.cpp b/test/Tests.cpp
index 3b629a7a..0ef142d9 100644
--- a/test/Tests.cpp
+++ b/test/Tests.cpp
@@ -20,9 +20,9 @@ BOOST_AUTO_TEST_CASE(Init)
// 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)