Title: [200077] trunk/Source/WebKit2
Revision
200077
Author
[email protected]
Date
2016-04-26 01:16:24 -0700 (Tue, 26 Apr 2016)

Log Message

[EFL] Update expectation result in ewk_context_preferred_languages API test
https://bugs.webkit.org/show_bug.cgi?id=157027

Reviewed by Carlos Garcia Campos.

platformLanguage() has been returning lower case value since r199815. Thus existing expected result
needs to be updated together.

* UIProcess/API/efl/tests/test_ewk2_context.cpp: Change en-US with en-us.
(TEST_F):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (200076 => 200077)


--- trunk/Source/WebKit2/ChangeLog	2016-04-26 07:28:20 UTC (rev 200076)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-26 08:16:24 UTC (rev 200077)
@@ -1,3 +1,16 @@
+2016-04-26  Gyuyoung Kim  <[email protected]>
+
+        [EFL] Update expectation result in ewk_context_preferred_languages API test
+        https://bugs.webkit.org/show_bug.cgi?id=157027
+
+        Reviewed by Carlos Garcia Campos.
+
+        platformLanguage() has been returning lower case value since r199815. Thus existing expected result
+        needs to be updated together.
+
+        * UIProcess/API/efl/tests/test_ewk2_context.cpp: Change en-US with en-us.
+        (TEST_F):
+
 2016-04-26  Zan Dobersek  <[email protected]>
 
         Mark two methods in the CoordinatedGraphicsScene and the

Modified: trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp (200076 => 200077)


--- trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp	2016-04-26 07:28:20 UTC (rev 200076)
+++ trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp	2016-04-26 08:16:24 UTC (rev 200077)
@@ -329,6 +329,6 @@
 
     ewk_context_preferred_languages_set(nullptr);
     ASSERT_TRUE(loadUrlSync(httpServer->getURLForPath("/index.html").data()));
-    ASSERT_STREQ("en-US", s_acceptLanguages);
+    ASSERT_STREQ("en-us", s_acceptLanguages);
     free(s_acceptLanguages);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to