You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ha...@apache.org on 2014/12/31 20:34:59 UTC

git commit: [flex-tlf] [refs/heads/develop] - font out of bounds test was backwards

Repository: flex-tlf
Updated Branches:
  refs/heads/develop 0b0c09fd2 -> 31f281ef6


font out of bounds test was backwards


Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/31f281ef
Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/31f281ef
Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/31f281ef

Branch: refs/heads/develop
Commit: 31f281ef69f6ed9623237730b554a605af1f49a2
Parents: 0b0c09f
Author: Harbs <ha...@in-tools.com>
Authored: Wed Dec 31 21:34:53 2014 +0200
Committer: Harbs <ha...@in-tools.com>
Committed: Wed Dec 31 21:34:53 2014 +0200

----------------------------------------------------------------------
 automation_tests/src/UnitTest/Tests/AttributeTest.as | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/31f281ef/automation_tests/src/UnitTest/Tests/AttributeTest.as
----------------------------------------------------------------------
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 @@ package UnitTest.Tests
         }
 
         [Test]
-        [Ignore]
         public function setFontSizeOutOfBounds():void
         {
             try
@@ -720,7 +719,7 @@ package UnitTest.Tests
             {
 
             }
-            assertTrue("font size was set to 999", (getFontSize() == 999));
+            assertTrue("font size was set to 999", (getFontSize() != 999));
         }
 
         private function setFontSize(size:Number):void