[gst-cvs] gstreamer-sharp: Fix test compilation
Sebastian Dröge
slomo at kemper.freedesktop.org
Fri Aug 7 22:42:08 PDT 2009
Module: gstreamer-sharp
Branch: master
Commit: 265cb43fa7f0abcd48a6b90270ab8c1afc54e56a
URL: http://cgit.freedesktop.org/gstreamer/gstreamer-sharp/commit/?id=265cb43fa7f0abcd48a6b90270ab8c1afc54e56a
Author: Sebastian Dröge <sebastian.droege at collabora.co.uk>
Date: Sat Aug 8 07:41:47 2009 +0200
Fix test compilation
---
tests/ElementTest.cs | 2 +-
tests/PipelineTest.cs | 4 ++--
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);
More information about the Gstreamer-commits
mailing list