From 22c826e56c1d2fe82235bc0d9071799e644a3213 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Thu, 6 Dec 2012 14:53:06 +0100 Subject: [PATCH] tests: Catch another exception --- tests/rygel-http-response-test.vala | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 () { -- 2.7.4