Unignore now passing tests for @This injection
diff --git a/core/runtime/src/test/java/org/apache/zest/runtime/injection/ConstructorInjectionOfThisTest.java b/core/runtime/src/test/java/org/apache/zest/runtime/injection/ConstructorInjectionOfThisTest.java
index 558d05a..4d246f2 100755
--- a/core/runtime/src/test/java/org/apache/zest/runtime/injection/ConstructorInjectionOfThisTest.java
+++ b/core/runtime/src/test/java/org/apache/zest/runtime/injection/ConstructorInjectionOfThisTest.java
@@ -26,7 +26,6 @@
 import org.apache.zest.bootstrap.AssemblyException;
 import org.apache.zest.bootstrap.ModuleAssembly;
 import org.apache.zest.bootstrap.SingletonAssembler;
-import org.junit.Ignore;
 import org.junit.Test;
 
 import static org.junit.Assert.*;
@@ -43,7 +42,6 @@
     {
         SingletonAssembler singletonAssembler = new SingletonAssembler()
         {
-
             @Override
             public void assemble( ModuleAssembly module )
                 throws AssemblyException
@@ -56,13 +54,12 @@
         does.doSomething();
     }
 
-    @Test @Ignore
+    @Test
     public void givenConcernWithThisInConstructorWhenCreatingModelExpectNoException()
         throws ActivationException, AssemblyException
     {
         SingletonAssembler singletonAssembler = new SingletonAssembler()
         {
-
             @Override
             public void assemble( ModuleAssembly module )
                 throws AssemblyException
@@ -75,13 +72,12 @@
         does.doSomething();
     }
 
-    @Test @Ignore
+    @Test
     public void givenSideEffectWithThisInConstructorWhenCreatingModelExpectNoException()
         throws ActivationException, AssemblyException
     {
         SingletonAssembler singletonAssembler = new SingletonAssembler()
         {
-
             @Override
             public void assemble( ModuleAssembly module )
                 throws AssemblyException