From 9c4e98fd96a8f855f650f50d8aa163bf76c0c33e Mon Sep 17 00:00:00 2001 From: Dmitri Granetchi Date: Mon, 22 Jun 2015 22:48:13 +0300 Subject: [PATCH] haxe <3.2 tests compile fix --- test/InlineTest.hx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/InlineTest.hx b/test/InlineTest.hx index 148aa9e..f0824d8 100644 --- a/test/InlineTest.hx +++ b/test/InlineTest.hx @@ -1,6 +1,5 @@ package ; -import haxe.rtti.Rtti; import bindx.Bind; import bindx.IBindable; import buddy.BuddySuite; @@ -27,7 +26,7 @@ class InlineTest extends BuddySuite { var rtti = new XmlParser().processElement(Xml.parse(rttiData).firstChild()); cd = switch (rtti) { case TClassdecl(c): c; case _: null; }; #else - cd = Rtti.hasRtti(BindableInline) ? Rtti.getRtti(BindableInline) : null; + cd = haxe.rtti.Rtti.hasRtti(BindableInline) ? haxe.rtti.Rtti.getRtti(BindableInline) : null; #end });