From c15cab8b6855540436e457465c4766812c6def55 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 21 Jan 2008 13:34:53 -0800 Subject: [PATCH] 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. --- test/get-path-extents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/get-path-extents.c b/test/get-path-extents.c index 0ba761c86..5520b39e9 100644 --- a/test/get-path-extents.c +++ b/test/get-path-extents.c @@ -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;