Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id AE0342004F3 for ; Tue, 15 Aug 2017 11:10:33 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AC704166282; Tue, 15 Aug 2017 09:10:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id F2E6F165EEE for ; Tue, 15 Aug 2017 11:10:32 +0200 (CEST) Received: (qmail 66195 invoked by uid 500); 15 Aug 2017 09:10:31 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 66187 invoked by uid 99); 15 Aug 2017 09:10:31 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Aug 2017 09:10:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8D044F1755; Tue, 15 Aug 2017 09:10:29 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mihaic@apache.org To: commits@flex.apache.org Date: Tue, 15 Aug 2017 09:10:29 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] git commit: [flex-sdk] [refs/heads/develop] - FLEX-18746 Renamed the main test function and increased the timeout a bit. archived-at: Tue, 15 Aug 2017 09:10:33 -0000 Repository: flex-sdk Updated Branches: refs/heads/develop f804380f1 -> b175cd6d2 FLEX-18746 Renamed the main test function and increased the timeout a bit. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/cd060ca2 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/cd060ca2 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/cd060ca2 Branch: refs/heads/develop Commit: cd060ca27b7f9c1cad1e3c9045cfbc64614d01e3 Parents: f804380 Author: Mihai Chira Authored: Tue Aug 15 11:02:24 2017 +0200 Committer: Mihai Chira Committed: Tue Aug 15 11:02:24 2017 +0200 ---------------------------------------------------------------------- .../projects/mx/tests/mx/controls/Tree_FLEX_18746_Tests.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/cd060ca2/frameworks/projects/mx/tests/mx/controls/Tree_FLEX_18746_Tests.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/mx/tests/mx/controls/Tree_FLEX_18746_Tests.as b/frameworks/projects/mx/tests/mx/controls/Tree_FLEX_18746_Tests.as index 5d64b06..26568d6 100644 --- a/frameworks/projects/mx/tests/mx/controls/Tree_FLEX_18746_Tests.as +++ b/frameworks/projects/mx/tests/mx/controls/Tree_FLEX_18746_Tests.as @@ -46,7 +46,7 @@ package mx.controls { //-------------------------------------------------------------------------- [Test(async, timeout=1000)] - public function test_object_removed_from_stage_via_code_is_not_initialized():void + public function test_closing_previously_opened_folder_with_0_children_does_not_throw_fatal():void { //given const dataProvider:ArrayCollection = new ArrayCollection(); @@ -59,7 +59,7 @@ package mx.controls { //then wait a few frames noEnterFramesToWait = 2; UIImpersonator.testDisplay.addEventListener(Event.ENTER_FRAME, onEnterFrame); - Async.handleEvent(this, _finishNotifier, Event.COMPLETE, then_expand_second_folder, 200); + Async.handleEvent(this, _finishNotifier, Event.COMPLETE, then_expand_second_folder, 300); }