From: Murray Cumming Date: Thu, 6 Dec 2012 13:53:06 +0000 (+0100) Subject: tests: Catch another exception X-Git-Tag: RYGEL_0_17_5~40 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22c826e56c1d2fe82235bc0d9071799e644a3213;p=profile%2Fivi%2Frygel.git tests: Catch another exception --- diff --git a/tests/rygel-http-response-test.vala b/tests/rygel-http-response-test.vala index c87fc2c..b2bed07 100644 --- a/tests/rygel-http-response-test.vala +++ b/tests/rygel-http-response-test.vala @@ -377,7 +377,12 @@ internal class Rygel.TestDataSource : Rygel.DataSource, Object { } this.frozen = false; - this.start (null); + + try { + this.start (null); + } catch (GLib.Error error) { + assert_not_reached (); + } } public void stop () {