msvcrt/tests: Remove a space before a '\n'.
This commit is contained in:
parent
4d044c6f2a
commit
4ee530b2a7
|
@ -369,7 +369,7 @@ static void test_asciimode(void)
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
fp = fopen("ascii.tst", "r");
|
fp = fopen("ascii.tst", "r");
|
||||||
fseek(fp, 3 ,SEEK_SET);
|
fseek(fp, 3 ,SEEK_SET);
|
||||||
ok((c = fgetc(fp)) == '1', "fgetc fails to read next char when positioned on \\r \n");
|
ok((c = fgetc(fp)) == '1', "fgetc fails to read next char when positioned on \\r\n");
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
|
|
||||||
unlink("ascii.tst");
|
unlink("ascii.tst");
|
||||||
|
|
Loading…
Reference in New Issue