From e8cbc8634bdd1318df7b2642aa0657de8ed78950 Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Wed, 19 Oct 2011 10:00:16 +0200 Subject: [PATCH] test: Remove temporary file on start-up --- tests/rygel-http-post-test.vala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/rygel-http-post-test.vala b/tests/rygel-http-post-test.vala index 998204b..985ff1d 100644 --- a/tests/rygel-http-post-test.vala +++ b/tests/rygel-http-post-test.vala @@ -64,6 +64,9 @@ public class Rygel.HTTPPostTest : GLib.Object { } public virtual void run () throws Error { + // cleanup + var file = File.new_for_uri (MediaItem.URI); + FileUtils.remove (file.get_path ()); Timeout.add_seconds (3, this.on_timeout); this.server.message_received.connect (this.on_message_received); this.client.completed.connect (this.on_client_completed); -- 2.7.4