pidgin: d32a03c0: Keep our tenses the same
markdoliner at pidgin.im
markdoliner at pidgin.im
Fri Sep 4 02:25:54 EDT 2009
-----------------------------------------------------------------
Revision: d32a03c0ae6dcc8fe45981be455c1bf13fc3442a
Ancestor: 936206d091ff3e9c3debe99371832583696d47e0
Author: markdoliner at pidgin.im
Date: 2009-09-04T06:24:31
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/d32a03c0ae6dcc8fe45981be455c1bf13fc3442a
Modified files:
libpurple/tests/tests.h
ChangeLog:
Keep our tenses the same
-------------- next part --------------
============================================================
--- libpurple/tests/tests.h 908fb55f70ed86007d8b1ae085b353048aa8c6bd
+++ libpurple/tests/tests.h c4bc56ab78cde5a1eaf0ffed68b7e6c6c3f8a67a
@@ -16,12 +16,12 @@ Suite * util_suite(void);
/* helper macros */
#define assert_int_equal(expected, actual) { \
- fail_if(expected != actual, "Expecting '%d' but got '%d'", expected, actual); \
+ fail_if(expected != actual, "Expected '%d' but got '%d'", expected, actual); \
}
#define assert_string_equal(expected, actual) { \
const gchar *a = actual; \
- fail_unless(strcmp(expected, a) == 0, "Expecting '%s' but got '%s'", expected, a); \
+ fail_unless(strcmp(expected, a) == 0, "Expected '%s' but got '%s'", expected, a); \
}
#define assert_string_equal_free(expected, actual) { \
More information about the Commits
mailing list