diff --git a/libElfDep/test/edt.cpp b/libElfDep/test/edt.cpp
index 5aba583627c397d26238e38d59803fc8a5244794..98e1633f11f991cabc3bd1c8d9ce77554158c4d6 100644
--- a/libElfDep/test/edt.cpp
+++ b/libElfDep/test/edt.cpp
@@ -1,18 +1,15 @@
 
 #include "edt.hpp"
 #include <libElfDep.hpp>
-#include <Rewrite_Utility.hpp>
 #include <algorithm> 
 
-using namespace libTransform;
 using namespace IRDB_SDK;
 using namespace std;
-using namespace IRDBUtility;
 using namespace ElfDep_Tester;
 
 
 ElfDep_Tester_t::ElfDep_Tester_t(FileIR_t* firp)
-	: Transform (NULL, firp, NULL)
+	: Transform (firp)
 {
 }
 
diff --git a/libElfDep/test/edt.hpp b/libElfDep/test/edt.hpp
index 10ed68b5c5786f38a97c80e6f9852b3dced5026e..24c082c478f7391dd985b011fcbcfd978cde67c2 100644
--- a/libElfDep/test/edt.hpp
+++ b/libElfDep/test/edt.hpp
@@ -2,18 +2,17 @@
 #include <string>
 #include <set>
 #include <irdb-core>
-#include <transform.hpp>
+#include <irdb-transform>
 
 namespace ElfDep_Tester
 {
 
-using namespace libTransform;
 using namespace IRDB_SDK;
 using namespace std;
 
 
 typedef set<string> StringSet_t;
-class ElfDep_Tester_t : libTransform::Transform
+class ElfDep_Tester_t : Transform
 {
 	public:
 	ElfDep_Tester_t(FileIR_t* firp);