Akihiro Sagawa : gdi32/tests: Fix copy&paste issues related to gmBlackBoxY.

Alexandre Julliard julliard at winehq.org
Tue Oct 1 14:54:30 CDT 2013


Module: wine
Branch: master
Commit: 24e0e4d1509d7370649e44532feaa08ab3ae3fd2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=24e0e4d1509d7370649e44532feaa08ab3ae3fd2

Author: Akihiro Sagawa <sagawa.aki at gmail.com>
Date:   Tue Oct  1 22:03:14 2013 +0900

gdi32/tests: Fix copy&paste issues related to gmBlackBoxY.

---

 dlls/gdi32/tests/font.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/gdi32/tests/font.c b/dlls/gdi32/tests/font.c
index 9f8d970..a6f439b 100644
--- a/dlls/gdi32/tests/font.c
+++ b/dlls/gdi32/tests/font.c
@@ -4122,7 +4122,7 @@ static void test_GetGlyphOutline(void)
                 ok(ret == 0, "%2d:GetGlyphOutlineW should return 0, got %d\n", fmt[i], ret);
             todo_wine {
                 ok(gm.gmBlackBoxX == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
-                ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
+                ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxY);
             }
         }
 
@@ -4137,7 +4137,7 @@ static void test_GetGlyphOutline(void)
                 ok(ret == 0, "%2d:GetGlyphOutlineW should return 0, got %d\n", fmt[i], ret);
             todo_wine {
                 ok(gm.gmBlackBoxX == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
-                ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
+                ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxY);
             }
         }
 
@@ -4152,7 +4152,7 @@ static void test_GetGlyphOutline(void)
                 ok(ret == 0, "%2d:GetGlyphOutlineW should return 0, got %d\n", fmt[i], ret);
             todo_wine {
                 ok(gm.gmBlackBoxX == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
-                ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
+                ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxY);
             }
         }
 
@@ -4165,7 +4165,7 @@ static void test_GetGlyphOutline(void)
                 ok(ret != GDI_ERROR, "%2d:GetGlyphOutlineW should succeed, got %d\n", fmt[i], ret);
                 todo_wine {
                     ok(gm.gmBlackBoxX == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
-                    ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxX);
+                    ok(gm.gmBlackBoxY == 1, "%2d:expected 1, got %u\n", fmt[i], gm.gmBlackBoxY);
                 }
             }
             else




More information about the wine-cvs mailing list