From 265cb43fa7f0abcd48a6b90270ab8c1afc54e56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 8 Aug 2009 07:41:47 +0200 Subject: [PATCH] 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 d15ec5ddc9..5a8c0dff17 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 e2eb944576..91427c23df 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);