diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-02-28 10:59:20 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2013-02-28 10:59:20 +0200 |
commit | 51fcdd88c1928c7c2537827e1a224fe171d492a9 (patch) | |
tree | d5075be5372fb41e66f10378fbd27d5448a43ffb /uitest | |
parent | 3cf6913c9a714512f8285a54c1ddcf19f2d97e6a (diff) | |
download | vaadin-framework-51fcdd88c1928c7c2537827e1a224fe171d492a9.tar.gz vaadin-framework-51fcdd88c1928c7c2537827e1a224fe171d492a9.zip |
Fix random error in DelegateToWidget test
Because of performance fixes to the handling of @DelegateToWidget
handling, the order in which property changes are delegated are no
longer deterministic. This patch fixes a bug in the test which caused
the update to value4 to be ignored if that was the last property to get
delegated.
Change-Id: Ie13a125b0d719894391b8ae3c9d2d899b163ebb4
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/widgetset/client/DelegateWidget.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/widgetset/client/DelegateWidget.java b/uitest/src/com/vaadin/tests/widgetset/client/DelegateWidget.java index 0543bdf073..8b71e2bdec 100644 --- a/uitest/src/com/vaadin/tests/widgetset/client/DelegateWidget.java +++ b/uitest/src/com/vaadin/tests/widgetset/client/DelegateWidget.java @@ -41,6 +41,7 @@ public class DelegateWidget extends HTML { public void setValue4(double value4) { this.value4 = value4; + updateText(); } private void updateText() { |