richedit: Swapped the expected and destination buffers in a test.

This commit is contained in:
Dylan Smith 2008-10-02 17:33:24 -04:00 committed by Alexandre Julliard
parent 62c544cf4f
commit 0589b61848
1 changed files with 5 additions and 5 deletions

View File

@ -328,14 +328,14 @@ static void test_EM_GETLINE(void)
char expectedbuf[1024];
char resultbuf[1024];
int j;
expectedbuf[0] = '\0';
for (j = 0; j < 32; j++)
sprintf(expectedbuf+strlen(expectedbuf), "%02x", dest[j] & 0xFF);
resultbuf[0] = '\0';
for (j = 0; j < 32; j++)
sprintf(resultbuf+strlen(resultbuf), "%02x", dest[j] & 0xFF);
expectedbuf[0] = '\0';
for (j = 0; j < expected_bytes_written; j++)
sprintf(resultbuf+strlen(resultbuf), "%02x", gl[i].text[j] & 0xFF);
sprintf(expectedbuf+strlen(expectedbuf), "%02x", gl[i].text[j] & 0xFF);
for (; j < 32; j++)
sprintf(resultbuf+strlen(resultbuf), "%02x", origdest[j] & 0xFF);
sprintf(expectedbuf+strlen(expectedbuf), "%02x", origdest[j] & 0xFF);
ok(!strncmp(dest, gl[i].text, expected_bytes_written),
"%d: expected_bytes_written=%d\n" "expected=0x%s\n" "but got= 0x%s\n",