Fix a couple of analyzer warnings

* Unused import in editable_text.dart
* Type mismatch in append_child_test.dart
This commit is contained in:
Jason Simmons
2015-09-29 14:04:47 -07:00
parent 02c2e79b64
commit 571c7dd9ff
2 changed files with 1 additions and 2 deletions

View File

@@ -3,7 +3,6 @@
// found in the LICENSE file.
import 'dart:async';
import 'dart:sky' as sky;
import 'package:mojo_services/keyboard/keyboard.mojom.dart';
import 'package:sky/painting.dart';

View File

@@ -16,7 +16,7 @@ void main() {
parent.appendChild(null);
}, throws);
expect(() {
parent.appendChild({"tagName": "div"});
Function.apply(parent.appendChild, [{"tagName": "div"}]);
}, throws);
});