From d8339246d9a53964f182a5c2570decefb26f3d3c Mon Sep 17 00:00:00 2001 From: raver119 Date: Tue, 3 Dec 2019 10:23:19 +0300 Subject: [PATCH] fix typo in test Signed-off-by: raver119 --- libnd4j/tests_cpu/layers_tests/BooleanOpsTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());