Title: [108313] trunk/Source/WebKit/gtk
Revision
108313
Author
[email protected]
Date
2012-02-20 23:45:54 -0800 (Mon, 20 Feb 2012)

Log Message

Fix GTK+ unit tests after r108281.

Reviewed by Alejandro G. Castro.

* tests/testwebplugindatabase.c:
(test_webkit_web_plugin_database_get_plugins): Update the description used
in the test.

Modified Paths

Diff

Modified: trunk/Source/WebKit/gtk/ChangeLog (108312 => 108313)


--- trunk/Source/WebKit/gtk/ChangeLog	2012-02-21 07:44:36 UTC (rev 108312)
+++ trunk/Source/WebKit/gtk/ChangeLog	2012-02-21 07:45:54 UTC (rev 108313)
@@ -1,5 +1,15 @@
 2012-02-20  Martin Robinson  <[email protected]>
 
+        Fix GTK+ unit tests after r108281.
+
+        Reviewed by Alejandro G. Castro.
+
+        * tests/testwebplugindatabase.c:
+        (test_webkit_web_plugin_database_get_plugins): Update the description used
+        in the test.
+
+2012-02-20  Martin Robinson  <[email protected]>
+
         Fix GTK+ unit tests after r108278.
 
         Reviewed by Alejandro G. Castro.

Modified: trunk/Source/WebKit/gtk/tests/testwebplugindatabase.c (108312 => 108313)


--- trunk/Source/WebKit/gtk/tests/testwebplugindatabase.c	2012-02-21 07:44:36 UTC (rev 108312)
+++ trunk/Source/WebKit/gtk/tests/testwebplugindatabase.c	2012-02-21 07:45:54 UTC (rev 108313)
@@ -44,7 +44,7 @@
     for (p = pluginList; p; p = p->next) {
         WebKitWebPlugin* plugin = (WebKitWebPlugin*)p->data;
         if (!g_strcmp0(webkit_web_plugin_get_name(plugin), "WebKit Test PlugIn") &&
-            !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape plug-in that handles test content for WebKit")) {
+            !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape® plug-in that handles test content for WebKit")) {
             found = TRUE;
             enabled = webkit_web_plugin_get_enabled(plugin);
             webkit_web_plugin_set_enabled(plugin, FALSE);
@@ -60,7 +60,7 @@
     for (p = pluginList; p; p = p->next) {
         WebKitWebPlugin* plugin = (WebKitWebPlugin*)p->data;
         if (!g_strcmp0(webkit_web_plugin_get_name(plugin), "WebKit Test PlugIn") &&
-            !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape plug-in that handles test content for WebKit"))
+            !g_strcmp0(webkit_web_plugin_get_description(plugin), "Simple Netscape® plug-in that handles test content for WebKit"))
             enabled = webkit_web_plugin_get_enabled(plugin);
     }
     webkit_web_plugin_database_plugins_list_free(pluginList);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to