summaryrefslogtreecommitdiffstats
path: root/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testbench/com/vaadin/tests/tickets/Ticket2061.java')
-rw-r--r--tests/testbench/com/vaadin/tests/tickets/Ticket2061.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java b/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java
index d86646b865..4d6549bfbf 100644
--- a/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java
+++ b/tests/testbench/com/vaadin/tests/tickets/Ticket2061.java
@@ -49,7 +49,7 @@ public class Ticket2061 extends Application.LegacyApplication {
private VerticalLayout layout = new VerticalLayout();
public MyTable(int columnNumber, String id) {
- setDebugId(id);
+ setId(id);
setCompositionRoot(layout);
setSizeFull();
columns = initializeColumns(columnNumber);
@@ -108,7 +108,7 @@ public class Ticket2061 extends Application.LegacyApplication {
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);
}
}
@@ -119,9 +119,9 @@ public class Ticket2061 extends Application.LegacyApplication {
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);
}
}
}