--- old/modules/base/src/test/java/javafx/beans/property/BooleanPropertyTest.java	2014-10-09 01:04:34.841796800 +0400
+++ new/modules/base/src/test/java/javafx/beans/property/BooleanPropertyTest.java	2014-10-09 01:04:34.499023400 +0400
@@ -33,7 +33,6 @@
 import javafx.beans.binding.ObjectExpression;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
-import org.junit.Ignore;
 import org.junit.Test;
 
 import static org.junit.Assert.*;
@@ -59,17 +58,12 @@
         log.stop();
     }
 
-    @Ignore("RT-27128")
     @Test
     public void testSetValue_Null() {
-        synchronized(log) {
-            log.reset();
-            
-            final BooleanProperty p = new SimpleBooleanProperty(VALUE_1);
-            p.setValue(null);
-            assertEquals(DEFAULT, p.get());
-            log.check(0, "INFO", 1, "NullPointerException");
-        }
+        final BooleanProperty p = new SimpleBooleanProperty(VALUE_1);
+        p.setValue(null);
+        assertEquals(DEFAULT, p.get());
+        log.checkFine(NullPointerException.class);
     }
 
     @Test