Commit da5385c6 by Edward Thomson

status: don't use `// ...` in tests, use `/* ... */`

parent db3572b7
...@@ -741,7 +741,7 @@ void test_status_renames__rename_threshold(void) ...@@ -741,7 +741,7 @@ void test_status_renames__rename_threshold(void)
cl_git_pass(git_repository_index(&index, g_repo)); cl_git_pass(git_repository_index(&index, g_repo));
// Default threshold /* Default threshold */
{ {
struct status_entry expected[] = { struct status_entry expected[] = {
{ GIT_STATUS_WT_RENAMED | GIT_STATUS_WT_MODIFIED, "ikeepsix.txt", "newname.txt" }, { GIT_STATUS_WT_RENAMED | GIT_STATUS_WT_MODIFIED, "ikeepsix.txt", "newname.txt" },
...@@ -752,7 +752,7 @@ void test_status_renames__rename_threshold(void) ...@@ -752,7 +752,7 @@ void test_status_renames__rename_threshold(void)
git_status_list_free(statuslist); git_status_list_free(statuslist);
} }
// Threshold set to 90 /* Threshold set to 90 */
{ {
struct status_entry expected[] = { struct status_entry expected[] = {
{ GIT_STATUS_WT_DELETED, "ikeepsix.txt", NULL }, { GIT_STATUS_WT_DELETED, "ikeepsix.txt", NULL },
...@@ -766,7 +766,7 @@ void test_status_renames__rename_threshold(void) ...@@ -766,7 +766,7 @@ void test_status_renames__rename_threshold(void)
git_status_list_free(statuslist); git_status_list_free(statuslist);
} }
// Threshold set to 25 /* Threshold set to 25 */
{ {
struct status_entry expected[] = { struct status_entry expected[] = {
{ GIT_STATUS_WT_RENAMED | GIT_STATUS_WT_MODIFIED, "ikeepsix.txt", "newname.txt" }, { GIT_STATUS_WT_RENAMED | GIT_STATUS_WT_MODIFIED, "ikeepsix.txt", "newname.txt" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment