diff --git a/tests/cefclient/res/logo.png b/tests/cefclient/res/logo.png index 41dd728df..a2a15f44e 100644 Binary files a/tests/cefclient/res/logo.png and b/tests/cefclient/res/logo.png differ diff --git a/tests/cefclient/scheme_test.cpp b/tests/cefclient/scheme_test.cpp index 11811c1dc..8c0a84475 100644 --- a/tests/cefclient/scheme_test.cpp +++ b/tests/cefclient/scheme_test.cpp @@ -46,7 +46,7 @@ class ClientSchemeHandler : public CefResourceHandler { "This contents of this page page are served by the " "ClientSchemeHandler class handling the client:// protocol." "
You should see an image:" - "
";
+              "
";
 
       // Output a string representation of the request
       std::string dump;
@@ -64,7 +64,7 @@ class ClientSchemeHandler : public CefResourceHandler {
 
       // Set the resulting mime type
       mime_type_ = "text/html";
-    } else if (strstr(url.c_str(), "client.png") != NULL) {
+    } else if (strstr(url.c_str(), "logo.png") != NULL) {
       // Load the response image
       if (LoadBinaryResource("logo.png", data_)) {
         handled = true;