Correct near-pangram to be an actual pangram

This wasn't affecting the test quality at all, but it did annoy
me to see this mistake.
This commit is contained in:
Carl Worth 2008-01-21 13:34:53 -08:00
parent ed695bdb9b
commit c15cab8b68

View file

@ -106,7 +106,7 @@ draw (cairo_t *cr, int width, int height)
cairo_surface_t *surface;
cairo_t *cr2;
const char *phase;
const char string[] = "The quick brown fox jumped over the lazy dog.";
const char string[] = "The quick brown fox jumps over the lazy dog.";
cairo_text_extents_t extents, scaled_font_extents;
cairo_test_status_t ret = CAIRO_TEST_SUCCESS;