Nikolay Sivov : comctl32/monthcal: Fix a nice typo in test message.

Alexandre Julliard julliard at winehq.org
Wed Oct 7 09:46:04 CDT 2009


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

Author: Nikolay Sivov <bunglehead at gmail.com>
Date:   Wed Oct  7 01:02:10 2009 +0400

comctl32/monthcal: Fix a nice typo in test message.

---

 dlls/comctl32/tests/monthcal.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/comctl32/tests/monthcal.c b/dlls/comctl32/tests/monthcal.c
index 8234126..57142a6 100644
--- a/dlls/comctl32/tests/monthcal.c
+++ b/dlls/comctl32/tests/monthcal.c
@@ -383,7 +383,7 @@ static void test_monthcal(void)
     expect(1200, st[1].wMilliseconds);
 
     ok(SendMessage(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "No limits should be set\n");
-    ok(st1[0].wYear != 2000, "Lover limit changed\n");
+    ok(st1[0].wYear != 2000, "Lower limit changed\n");
     /* invalid timestamp should be replaced with today data, except msecs */
     expect(today.wHour, st1[1].wHour);
     expect(today.wMinute, st1[1].wMinute);
@@ -407,10 +407,10 @@ static void test_monthcal(void)
     st[1].wMonth = 0;
     ok(!SendMessage(hwnd, MCM_SETRANGE, GDTR_MIN | GDTR_MAX, (LPARAM)st), "Should have failed to set limits\n");
     ok(SendMessage(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "No limits should be set\n");
-    ok(st1[0].wYear != 2000, "Lover limit changed\n");
+    ok(st1[0].wYear != 2000, "Lower limit changed\n");
     ok(!SendMessage(hwnd, MCM_SETRANGE, GDTR_MAX, (LPARAM)st), "Should have failed to set MAX limit\n");
     ok(SendMessage(hwnd, MCM_GETRANGE, 0, (LPARAM)st1) == GDTR_MAX, "No limits should be set\n");
-    ok(st1[0].wYear != 2000, "Lover limit changed\n");
+    ok(st1[0].wYear != 2000, "Lower limit changed\n");
 
     GetSystemTime(&st[0]);
     st[0].wDay = 20;




More information about the wine-cvs mailing list