Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Made messages more consistent across tests
  • Loading branch information
monich committed Feb 19, 2014
1 parent cb8b17a commit 5c62d7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mms-lib/test/retrieve/test_retrieve.c
Expand Up @@ -266,7 +266,7 @@ test_finish(
g_free(f1);
g_free(f2);
}
MMS_INFO("%s %s", name, (test->ret == RET_OK) ? "OK" : "FAILED");
MMS_INFO("%s: %s", (test->ret == RET_OK) ? "OK" : "FAILED", name);
mms_handler_test_reset(test->handler);
g_main_loop_quit(test->loop);
}
Expand Down
4 changes: 2 additions & 2 deletions mms-lib/test/retrieve_cancel/test_retrieve_cancel.c
Expand Up @@ -55,8 +55,8 @@ test_done(
MMSDispatcher* dispatcher)
{
Test* test = MMS_CAST(delegate,Test,delegate);
MMS_INFO("%s %s", test->desc->name, (test->ret == RET_OK) ?
"OK" : "FAILED");
MMS_INFO("%s: %s", (test->ret == RET_OK) ? "OK" : "FAILED",
test->desc->name);
g_main_loop_quit(test->loop);
}

Expand Down

0 comments on commit 5c62d7d

Please sign in to comment.