Index: tests/lib_strong/html/table_test.dart |
diff --git a/tests/lib_strong/html/table_test.dart b/tests/lib_strong/html/table_test.dart |
index fca7e3ac3d9f798b3068ada7de976056814e4da1..cb7a4e2d722afbd7b04a195306f247e737eeae6e 100644 |
--- a/tests/lib_strong/html/table_test.dart |
+++ b/tests/lib_strong/html/table_test.dart |
@@ -12,7 +12,7 @@ main() { |
var head = table.createTHead(); |
expect(table.tHead, head); |
- var headerRow = head.addRow(); |
+ var headerRow = head.addRow(); |
var headerCell = headerRow.addCell(); |
headerCell.text = 'Header Cell'; |
@@ -23,7 +23,7 @@ main() { |
expect(table.tBodies.length, 1); |
expect(table.tBodies[0], body); |
- var bodyRow = body.addRow(); |
+ var bodyRow = body.addRow(); |
expect(body.rows.length, 1); |
expect(body.rows[0], bodyRow); |
@@ -35,7 +35,7 @@ main() { |
var foot = table.createTFoot(); |
expect(table.tFoot, foot); |
- var footerRow = foot.addRow(); |
+ var footerRow = foot.addRow(); |
expect(foot.rows.length, 1); |
expect(foot.rows[0], footerRow); |
@@ -45,7 +45,7 @@ main() { |
expect(footerRow.cells[0], footerCell); |
var body2 = table.createTBody(); |
- var bodyRow2 = body2.addRow(); |
+ var bodyRow2 = body2.addRow(); |
var bodyCell2 = bodyRow2.addCell(); |
bodyCell2.text = 'Body Cell2'; |
@@ -55,4 +55,3 @@ main() { |
expect(table.tBodies[1], body2); |
}); |
} |
- |