summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/rygel-http-post-test.vala2
-rw-r--r--tests/rygel-user-config-test.vala2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala
index fd92f84b..e92a92c0 100644
--- a/tests/rygel-http-post-test.vala
+++ b/tests/rygel-http-post-test.vala
@@ -105,7 +105,7 @@ public class Rygel.HTTPPostTest : GLib.Object {
var file = File.new_for_uri (MediaItem.URI);
FileUtils.remove (file.get_path ());
- Timeout.add_seconds (3, this.on_timeout);
+ Timeout.add_seconds (10, this.on_timeout);
this.server.message_received.connect (this.on_message_received);
this.client.completed.connect (this.on_client_completed);
diff --git a/tests/rygel-user-config-test.vala b/tests/rygel-user-config-test.vala
index 6f16b8f6..b45d6511 100644
--- a/tests/rygel-user-config-test.vala
+++ b/tests/rygel-user-config-test.vala
@@ -687,7 +687,7 @@ public class Rygel.UserConfigTest : GLib.Object {
foreach (var watch_data in watch_data_array) {
this.current_watch_data = watch_data;
- this.timeout_id = Timeout.add_seconds (2, () => {
+ this.timeout_id = Timeout.add_seconds (10, () => {
if (!this.current_watch_data.empty ()) {
this.current_watch_data.print_description ();
warning ("Test timed out and not all expected changes " +