From: Krzesimir Nowak Date: Fri, 21 Sep 2012 12:08:33 +0000 (+0200) Subject: Fix the RygelHTTPGetTest. X-Git-Tag: RYGEL_0_17_0-w42~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd144265af5fdf95bec42c4085cfb5d9c7d05f7a;p=profile%2Fivi%2Frygel.git Fix the RygelHTTPGetTest. No need to start async this.client.run () again - it is already done in start_next_test_request (). This was causing failures on Fedora. https://bugzilla.gnome.org/show_bug.cgi?id=680496 --- diff --git a/tests/rygel-http-get-test.vala b/tests/rygel-http-get-test.vala index f697d2a..b8ebe54 100644 --- a/tests/rygel-http-get-test.vala +++ b/tests/rygel-http-get-test.vala @@ -194,7 +194,6 @@ public class Rygel.HTTPGetTest : GLib.Object { private void on_client_completed (StateMachine client) { if (requests.size > 0) { this.start_next_test_request (); - this.client.run.begin (); } else { this.main_loop.quit (); this.client_done = true;