diff options
Diffstat (limited to 'tests/testbench/com/vaadin/tests/tickets/Ticket2061c.java')
-rw-r--r-- | tests/testbench/com/vaadin/tests/tickets/Ticket2061c.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testbench/com/vaadin/tests/tickets/Ticket2061c.java b/tests/testbench/com/vaadin/tests/tickets/Ticket2061c.java index b0897600d3..5cb041788b 100644 --- a/tests/testbench/com/vaadin/tests/tickets/Ticket2061c.java +++ b/tests/testbench/com/vaadin/tests/tickets/Ticket2061c.java @@ -65,7 +65,7 @@ public class Ticket2061c extends Application.LegacyApplication implements private VerticalLayout layout = new VerticalLayout(); public MyTable(int columnNumber, String id) { - setDebugId(id); + setId(id); setCompositionRoot(layout); setSizeFull(); columns = initializeColumns(columnNumber); @@ -124,7 +124,7 @@ public class Ticket2061c extends Application.LegacyApplication implements this.setWidth("100%"); // this.setHeight("100%"); for (int i = 0; i < components.length; i++) { - this.addTab(components[i], components[i].getDebugId(), null); + this.addTab(components[i], components[i].getId(), null); } } } @@ -134,9 +134,9 @@ public class Ticket2061c extends Application.LegacyApplication implements public MyAccordion(Component[] components, String id) { this.setWidth("100%"); this.setHeight("100%"); - setDebugId(id); + setId(id); for (int i = 0; i < components.length; i++) { - this.addTab(components[i], components[i].getDebugId(), null); + this.addTab(components[i], components[i].getId(), null); } } } |