diff options
author | Xan Lopez <xan@igalia.com> | 2012-09-08 22:44:36 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-09-08 22:44:36 +0800 |
commit | f7e2d5b280c441d03243506446cc85145f23ed48 (patch) | |
tree | 334b820ff45f342a12911e605cefc186729b4d3d | |
parent | a786a06a292ac82127d6fa4cfa0d75de9fa9ee10 (diff) | |
download | gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.gz gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.zst gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.zip |
tests: remove debug output from snapshot service tests
-rw-r--r-- | tests/ephy-snapshot-service-test.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ephy-snapshot-service-test.c b/tests/ephy-snapshot-service-test.c index 5c352e040..adb3e7af7 100644 --- a/tests/ephy-snapshot-service-test.c +++ b/tests/ephy-snapshot-service-test.c @@ -184,7 +184,6 @@ test_already_cancelled_snapshot (void) static gboolean cancel (GCancellable *cancellable) { - g_print ("CANCELLING NOW!!!\n"); g_cancellable_cancel (cancellable); return FALSE; } @@ -219,12 +218,10 @@ server_callback (SoupServer *server, SoupMessage *msg, soup_message_set_status (msg, SOUP_STATUS_OK); soup_message_body_append (msg->response_body, SOUP_MEMORY_STATIC, response, strlen (response)); - g_print ("Client asked for path: %s\n", path); soup_message_body_complete (msg->response_body); } else soup_message_set_status (msg, SOUP_STATUS_NOT_IMPLEMENTED); - g_print ("Server responding to this\n"); } int |