diff options
Diffstat (limited to 'test/text-rotate.c')
-rw-r--r-- | test/text-rotate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/text-rotate.c b/test/text-rotate.c index 50d907b2..2c3af02c 100644 --- a/test/text-rotate.c +++ b/test/text-rotate.c @@ -139,10 +139,10 @@ draw (cairo_t *cr, int width, int height) cairo_move_to (cr, x_off - extents.x_bearing, y_off - extents.y_bearing); cairo_set_source_rgb (cr, 0, 0, 0); #if CAIRO_TEST_GENERATE_REFERENCE_IMAGE - cairo_text_path (cr, "cairo"); + cairo_text_path (cr, text); cairo_fill (cr); #else - cairo_show_text (cr, "cairo"); + cairo_show_text (cr, text); #endif cairo_restore (cr); } |