From ced90ebccdeb1785f6bad66605ea6bb27292d396 Mon Sep 17 00:00:00 2001 From: Parichay Kapoor Date: Thu, 18 Jun 2020 13:46:04 +0900 Subject: [PATCH] [bugfix] Bug fix with git merge Git merged new commits causing build errors Need urgent merge Signed-off-by: Parichay Kapoor --- test/tizen_capi/unittest_tizen_capi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tizen_capi/unittest_tizen_capi.cpp b/test/tizen_capi/unittest_tizen_capi.cpp index 8c30e800..0c67a9bc 100644 --- a/test/tizen_capi/unittest_tizen_capi.cpp +++ b/test/tizen_capi/unittest_tizen_capi.cpp @@ -288,10 +288,10 @@ TEST(nntrainer_capi_nnmodel, addLayer_05_n) { replaceString("Layers = inputlayer outputlayer", "Layers = inputlayer outputlayer", config_file, config_str); - status = ml_nnmodel_construct_with_conf(config_file.c_str(), &model); + status = ml_nnmodel_construct(&model); EXPECT_EQ(status, ML_ERROR_NONE); - status = ml_nnmodel_compile_with_conf(model); + status = ml_nnmodel_compile_with_conf(config_file.c_str(), model); EXPECT_EQ(status, ML_ERROR_NONE); status = ml_nnlayer_create(&layer, ML_LAYER_TYPE_FC); -- 2.34.1