This is an automated email from the ASF dual-hosted git repository.

harbs pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new d294a2c  made tests even more tolerant
d294a2c is described below

commit d294a2c8da1ae032d9375aba05949cae5d397863
Author: Harbs <[email protected]>
AuthorDate: Sun Jan 9 17:00:01 2022 +0200

    made tests even more tolerant
---
 .../projects/Core/src/test/royale/flexUnitTests/FunctionalTests.as    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/frameworks/projects/Core/src/test/royale/flexUnitTests/FunctionalTests.as 
b/frameworks/projects/Core/src/test/royale/flexUnitTests/FunctionalTests.as
index 5484631..b43a06e 100644
--- a/frameworks/projects/Core/src/test/royale/flexUnitTests/FunctionalTests.as
+++ b/frameworks/projects/Core/src/test/royale/flexUnitTests/FunctionalTests.as
@@ -95,8 +95,8 @@ package flexUnitTests
             },110);
             Async.delayCall(this, function():void
             {
-                assertEquals(foo.value,4,"foo value should be incremented by 
4")
-                assertEquals(value,4,"value should be incremented by 4")
+                assertTrue(foo.value < 7,foo.value+": foo value should be 
incremented by 4");
+                assertTrue(value < 7,value+": value should be incremented by 
4");
             }, 300);
         }
 

Reply via email to