aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ephy-snapshot-service-test.c
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-09-08 22:44:36 +0800
committerXan Lopez <xan@igalia.com>2012-09-08 22:44:36 +0800
commitf7e2d5b280c441d03243506446cc85145f23ed48 (patch)
tree334b820ff45f342a12911e605cefc186729b4d3d /tests/ephy-snapshot-service-test.c
parenta786a06a292ac82127d6fa4cfa0d75de9fa9ee10 (diff)
downloadgsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar
gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.gz
gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.bz2
gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.lz
gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.xz
gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.tar.zst
gsoc2013-epiphany-f7e2d5b280c441d03243506446cc85145f23ed48.zip
tests: remove debug output from snapshot service tests
Diffstat (limited to 'tests/ephy-snapshot-service-test.c')
-rw-r--r--tests/ephy-snapshot-service-test.c3
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