Index: sky/tests/dom/appendChild.sky |
diff --git a/sky/tests/dom/appendChild.sky b/sky/tests/dom/appendChild.sky |
index 57a6a2ff87a565ba92372fd9ccf097c647d2740c..35494a0a596856bfbd7690e8c62997cb1db706a6 100644 |
--- a/sky/tests/dom/appendChild.sky |
+++ b/sky/tests/dom/appendChild.sky |
@@ -17,10 +17,9 @@ void main() { |
expect(() { |
parent.appendChild(); |
}, throws); |
- // TODO(dart): This is a real bug. |
- // expect(() { |
- // parent.appendChild(null); |
- // }, throws); |
+ expect(() { |
+ parent.appendChild(null); |
+ }, throws); |
expect(() { |
parent.appendChild({tagName: "div"}); |
}, throws); |