font out of bounds test was backwards
diff --git a/automation_tests/src/UnitTest/Tests/AttributeTest.as b/automation_tests/src/UnitTest/Tests/AttributeTest.as
index 705b602..274120d 100644
--- a/automation_tests/src/UnitTest/Tests/AttributeTest.as
+++ b/automation_tests/src/UnitTest/Tests/AttributeTest.as
@@ -709,7 +709,6 @@
         }
 
         [Test]
-        [Ignore]
         public function setFontSizeOutOfBounds():void
         {
             try
@@ -720,7 +719,7 @@
             {
 
             }
-            assertTrue("font size was set to 999", (getFontSize() == 999));
+            assertTrue("font size was set to 999", (getFontSize() != 999));
         }
 
         private function setFontSize(size:Number):void