Commit 0ae12c4a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

shlwapi/tests: Fix test_StrFromTimeIntervalA() to print the badly formatted…

shlwapi/tests: Fix test_StrFromTimeIntervalA() to print the badly formatted string in case of a failure.
parent fec346b3
......@@ -607,8 +607,8 @@ static void test_StrFromTimeIntervalA(void)
{
StrFromTimeIntervalA(szBuff, 256, result->ms, result->digits);
ok(!strcmp(result->time_interval, szBuff), "Formatted %d %d wrong\n",
result->ms, result->digits);
ok(!strcmp(result->time_interval, szBuff), "Formatted %d %d wrong: %s\n",
result->ms, result->digits, szBuff);
result++;
}
}
......
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