| Index: tests/html/htmlelement_test.dart
 | 
| diff --git a/tests/html/htmlelement_test.dart b/tests/html/htmlelement_test.dart
 | 
| index 3dddf507d3d14892b18173d820298878000ad1fb..ba8307107593d05b0c9c35a3cecd75bab83315cb 100644
 | 
| --- a/tests/html/htmlelement_test.dart
 | 
| +++ b/tests/html/htmlelement_test.dart
 | 
| @@ -69,9 +69,9 @@ main() {
 | 
|      Expect.setEquals(const <String> ['foo-value', 'bar-value'], values);
 | 
|  
 | 
|      Expect.setEquals(const <String> ['foo', 'bar'],
 | 
| -                     new List<String>.from(div.dataAttributes.getKeys()));
 | 
| +                     new List<String>.from(div.dataAttributes.keys));
 | 
|      Expect.setEquals(const <String> ['foo-value', 'bar-value'],
 | 
| -                     new List<String>.from(div.dataAttributes.getValues()));
 | 
| +                     new List<String>.from(div.dataAttributes.values));
 | 
|  
 | 
|      Expect.equals(2, div.dataAttributes.length);
 | 
|      Expect.isFalse(div.dataAttributes.isEmpty);
 | 
| 
 |