diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2010-01-24 16:21:11 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2010-01-24 16:21:11 +0100 |
commit | 0cd3f65d05e7d966ff66d2aa97908332eb2d6c06 (patch) | |
tree | dfaa9b7d376cba31436e72655df018d128337187 /tests | |
parent | c3c4d481079f2a24ea16cd49b785b6f358a28fc9 (diff) | |
parent | 67c68ee643eaef16277fa614d873dd558bfdbd04 (diff) |
merge in pawelz' authentication handler + some other fixes
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-expand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-expand.c b/tests/test-expand.c index 4dcd82d..7ea3d61 100644 --- a/tests/test-expand.c +++ b/tests/test-expand.c @@ -72,11 +72,11 @@ test_useragent (void) { void test_WEBKIT_VERSION (void) { GString* expected = g_string_new(""); - g_string_append(expected, itos(WEBKIT_MAJOR_VERSION)); + g_string_append(expected, itos(webkit_major_version())); g_string_append(expected, " "); - g_string_append(expected, itos(WEBKIT_MINOR_VERSION)); + g_string_append(expected, itos(webkit_minor_version())); g_string_append(expected, " "); - g_string_append(expected, itos(WEBKIT_MICRO_VERSION)); + g_string_append(expected, itos(webkit_micro_version())); g_assert_cmpstr(expand("@WEBKIT_MAJOR @WEBKIT_MINOR @WEBKIT_MICRO", 0), ==, g_string_free(expected, FALSE)); } |