diff --git a/libnd4j/tests_cpu/layers_tests/BooleanOpsTests.cpp b/libnd4j/tests_cpu/layers_tests/BooleanOpsTests.cpp index 20469ed2d..3cf9eeb04 100644 --- a/libnd4j/tests_cpu/layers_tests/BooleanOpsTests.cpp +++ b/libnd4j/tests_cpu/layers_tests/BooleanOpsTests.cpp @@ -134,7 +134,7 @@ TEST_F(BooleanOpsTests, test_where_1) { auto y = NDArrayFactory::create('c', {6}, { 2, -3, 1, 1, -2, 1 }); auto e = NDArrayFactory::create('c', {3}, { 4, 8, 5 }); - nd4j:ops::choose op; + nd4j::ops::choose op; auto result = op.execute({&x, &y}, {}, {3}); ASSERT_EQ(Status::OK(), result->status());