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 <[email protected]> Authored: Wed Dec 31 21:34:53 2014 +0200 Committer: Harbs <[email protected]> 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
