summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2012-12-06 16:29:49 +0100
committerMurray Cumming <murrayc@murrayc.com>2012-12-06 16:29:49 +0100
commit0faa3c3cfcb98b0ead0504bd95a6bcea9815a6a9 (patch)
tree737b4c05ea0772f65cfcf139849b9dcec4fc857c /tests
parentc8e89d30dc9ad7bfcf3584a37f183e5693a890fa (diff)
downloadrygel-0faa3c3cfcb98b0ead0504bd95a6bcea9815a6a9.tar.gz
tests: Catch an exception
Diffstat (limited to 'tests')
-rw-r--r--tests/rygel-http-post-test.vala7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala
index af8acdd0..eccbaa3c 100644
--- a/tests/rygel-http-post-test.vala
+++ b/tests/rygel-http-post-test.vala
@@ -353,7 +353,12 @@ public class Rygel.MediaContainer : Rygel.MediaObject {
this.error = false;
this.id = "TesContainer";
- this.monitor = this.file.monitor_file (FileMonitorFlags.NONE);
+ try {
+ this.monitor = this.file.monitor_file (FileMonitorFlags.NONE);
+ } catch (GLib.Error error) {
+ assert_not_reached ();
+ }
+
this.monitor.changed.connect (this.on_file_changed);
}