Updated Branches: refs/heads/release4.11.0 251f26e20 -> fe2a2ea3a
fix test to be more reasonable. It would be rare to see a discontiguous radiobutton group like this. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/fe2a2ea3 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/fe2a2ea3 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/fe2a2ea3 Branch: refs/heads/release4.11.0 Commit: fe2a2ea3a1851e537c5d04527a24dcc0ac279f34 Parents: 251f26e Author: Alex Harui <[email protected]> Authored: Sat Oct 12 07:36:37 2013 -0700 Committer: Alex Harui <[email protected]> Committed: Sat Oct 12 07:38:50 2013 -0700 ---------------------------------------------------------------------- .../RadioButton/Styles/RadioButton_Mirroring_Styles.mxml | 1 + mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fe2a2ea3/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml ---------------------------------------------------------------------- diff --git a/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml b/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml index 38888f3..06b7437 100644 --- a/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml +++ b/mustella/tests/components/RadioButton/Styles/RadioButton_Mirroring_Styles.mxml @@ -64,6 +64,7 @@ <TestCase testID="RadioButton_Styles_Mirroring_RTL_focusRing" keywords="[RadioButton, Styles, Mirroring]" description="Test focusRing with layoutDirection rtl with RadioButton"> <setup> <ResetComponent target="rb" className="mx.controls::RadioButton" waitEvent="updateComplete" waitTarget="rb"/> + <SetProperty target="rb" propertyName="groupName" value="g1"/> <SetProperty target="rb" propertyName="label" value="Hello World!!!" waitEvent="updateComplete" waitTarget="rb"/> </setup> <body> http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/fe2a2ea3/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml ---------------------------------------------------------------------- diff --git a/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml b/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml index 1b77b69..d0ae4f4 100644 --- a/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml +++ b/mustella/tests/components/RadioButton/swfs/RadioButton_Basic2.mxml @@ -83,7 +83,7 @@ <TNComp id="tn"/> <mx:Fade id="myFade" /> <mx:RadioButtonGroup id="g1"/> - <mx:RadioButton id="rb" effectStart="runStartTests(event)" effectEnd="runEndTests(event)" creationComplete="{ti.text='Creation Complete Event Triggered'}" keyDown="{ti.text='Key Down Event Triggered'}" keyUp="{ti.text='Key Up Event Triggered'}" rollOverEffect="myFade"/> + <mx:RadioButton id="rb" groupName="g1" effectStart="runStartTests(event)" effectEnd="runEndTests(event)" creationComplete="{ti.text='Creation Complete Event Triggered'}" keyDown="{ti.text='Key Down Event Triggered'}" keyUp="{ti.text='Key Up Event Triggered'}" rollOverEffect="myFade"/> <mx:TextInput id="ti"/>
