summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-08-08 07:41:47 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-08-08 07:41:47 +0200
commit265cb43fa7f0abcd48a6b90270ab8c1afc54e56a (patch)
treec21f403f3705f2c1039e5e0381b55e24c692bd95
parent39f1f2b7ad34897fb78244b12a2a238151dd30cb (diff)
Fix test compilation
-rw-r--r--tests/ElementTest.cs2
-rw-r--r--tests/PipelineTest.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/ElementTest.cs b/tests/ElementTest.cs
index d15ec5d..5a8c0df 100644
--- a/tests/ElementTest.cs
+++ b/tests/ElementTest.cs
@@ -9,8 +9,8 @@
using System;
using NUnit.Framework;
-using GLib;
using Gst;
+using Gst.GLib;
[TestFixture]
public class ElementTest
diff --git a/tests/PipelineTest.cs b/tests/PipelineTest.cs
index e2eb944..91427c2 100644
--- a/tests/PipelineTest.cs
+++ b/tests/PipelineTest.cs
@@ -85,7 +85,7 @@ public class PipelineTest
}
Element pipeline;
- GLib.MainLoop loop;
+ Gst.GLib.MainLoop loop;
bool MessageReceived(Bus bus, Message message) {
MessageType type = message.Type;
@@ -142,7 +142,7 @@ public class PipelineTest
}
Assert.AreEqual(pipeline.SetState(State.Playing), StateChangeReturn.Async);
- loop = new GLib.MainLoop();
+ loop = new Gst.GLib.MainLoop();
loop.Run();
Assert.AreEqual(pipeline.SetState(State.Null), StateChangeReturn.Success);