Commit 571c7dd9 authored by Jason Simmons's avatar Jason Simmons

Fix a couple of analyzer warnings

* Unused import in editable_text.dart
* Type mismatch in append_child_test.dart
parent 02c2e79b
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:async'; import 'dart:async';
import 'dart:sky' as sky;
import 'package:mojo_services/keyboard/keyboard.mojom.dart'; import 'package:mojo_services/keyboard/keyboard.mojom.dart';
import 'package:sky/painting.dart'; import 'package:sky/painting.dart';
......
...@@ -16,7 +16,7 @@ void main() { ...@@ -16,7 +16,7 @@ void main() {
parent.appendChild(null); parent.appendChild(null);
}, throws); }, throws);
expect(() { expect(() {
parent.appendChild({"tagName": "div"}); Function.apply(parent.appendChild, [{"tagName": "div"}]);
}, throws); }, throws);
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment