aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/test/NetworkTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/test/NetworkTests.cpp')
-rw-r--r--src/armnn/test/NetworkTests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/armnn/test/NetworkTests.cpp b/src/armnn/test/NetworkTests.cpp
index 66dbb4ee16..c64c0a0d40 100644
--- a/src/armnn/test/NetworkTests.cpp
+++ b/src/armnn/test/NetworkTests.cpp
@@ -32,9 +32,9 @@ TEST_SUITE("Network")
TEST_CASE("LayerGuids")
{
armnn::NetworkImpl net;
- armnn::LayerGuid inputId = net.AddInputLayer(0)->GetGuid();
- armnn::LayerGuid addId = net.AddAdditionLayer()->GetGuid();
- armnn::LayerGuid outputId = net.AddOutputLayer(0)->GetGuid();
+ LayerGuid inputId = net.AddInputLayer(0)->GetGuid();
+ LayerGuid addId = net.AddAdditionLayer()->GetGuid();
+ LayerGuid outputId = net.AddOutputLayer(0)->GetGuid();
CHECK(inputId != addId);
CHECK(addId != outputId);