[trivial] Fix multiline comments to meet doxygen requiremnent
authorYongjoo Ahn <yongjoo1.ahn@samsung.com>
Fri, 5 Jan 2024 09:20:45 +0000 (18:20 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Wed, 10 Jan 2024 06:27:13 +0000 (15:27 +0900)
- Fix multiline comments in unittest_mlagent.cc to satisfy CI

Signed-off-by: Yongjoo Ahn <yongjoo1.ahn@samsung.com>
tests/unittest_mlagent/unittest_mlagent.cc

index 1f55a76..4fdcd48 100644 (file)
@@ -94,7 +94,8 @@ TEST (testMLAgent, GetModelInvalidURIFormats_n)
 
     path = mlagent_get_model_path_from (&val);
 
-    /* In the case that invalid URIs are given, mlagent_get_model_path_from () returns
+    /**
+     * In the case that invalid URIs are given, mlagent_get_model_path_from () returns
      * the given URI as it is so that it is handled by the fallback procedure (i.e., regarding it as a file path).
      */
     EXPECT_STREQ (uri, path);
@@ -123,7 +124,8 @@ TEST (testMLAgent, GetModelInvalidModel_n)
 
   path = mlagent_get_model_path_from (&val);
 
-  /* In the case that invalid URIs are given, mlagent_get_model_path_from () returns
+  /**
+   * In the case that invalid URIs are given, mlagent_get_model_path_from () returns
    * the given URI as it is so that it is handled by the fallback procedure (i.e., regarding it as a file path).
    */
   EXPECT_STREQ (uri, path);