| Index: tests/html/htmlelement_test.dart
|
| diff --git a/tests/html/htmlelement_test.dart b/tests/html/htmlelement_test.dart
|
| index b114c16df5aaf2725c80981c66a43db926e04926..dd1eae1e798fa5ce12003a6c37dc2b9e4cf8f5f9 100644
|
| --- a/tests/html/htmlelement_test.dart
|
| +++ b/tests/html/htmlelement_test.dart
|
| @@ -26,7 +26,7 @@ main() {
|
|
|
| Expect.equals(2, row.cells.length);
|
|
|
| - TableRowElement headerRow = table.rows.item(0);
|
| + TableRowElement headerRow = table.rows[0];
|
| Expect.equals(2, headerRow.cells.length);
|
| });
|
| test('dataAttributes', () {
|
|
|