Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1061)

Unified Diff: pkg/polymer/test/prop_attr_reflection_test.dart

Issue 172923002: [polymer] fix editor hints -- query/queryAll and unused imports (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer/test/prop_attr_bind_reflection_test.dart ('k') | pkg/polymer/test/property_change_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/prop_attr_reflection_test.dart
diff --git a/pkg/polymer/test/prop_attr_reflection_test.dart b/pkg/polymer/test/prop_attr_reflection_test.dart
index 37562dad192a8af0796e42b32274fc29ba2b9047..79b9c8eb55be72baf4442909d72842bdea7108d5 100644
--- a/pkg/polymer/test/prop_attr_reflection_test.dart
+++ b/pkg/polymer/test/prop_attr_reflection_test.dart
@@ -52,9 +52,9 @@ main() {
Polymer.register('x-compose', XCompose);
test('property attribute reflection', () {
- var xcompose = query('x-compose');
- var xfoo = query('x-foo');
- var xbar = query('x-bar');
+ var xcompose = querySelector('x-compose');
+ var xfoo = querySelector('x-foo');
+ var xbar = querySelector('x-bar');
xfoo.foo = 5;
return onAttributeChange(xfoo).then((_) {
expect(xcompose.$['bar'].attributes.containsKey('zim'), false,
« no previous file with comments | « pkg/polymer/test/prop_attr_bind_reflection_test.dart ('k') | pkg/polymer/test/property_change_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698