| Index: tests/html/cssstyledeclaration_test.dart
|
| diff --git a/tests/html/cssstyledeclaration_test.dart b/tests/html/cssstyledeclaration_test.dart
|
| index 964e9f9437bad12e8c315a028a6b12d2502a0325..0634b3488806d2ec9fc29e408548d463e49dbfea 100644
|
| --- a/tests/html/cssstyledeclaration_test.dart
|
| +++ b/tests/html/cssstyledeclaration_test.dart
|
| @@ -89,7 +89,7 @@ main() {
|
| new Timer(const Duration(milliseconds: 10), expectAsync0(() {
|
| element.style.textDecoration = 'underline';
|
| var style = element.getComputedStyle();
|
| - expect(style.textDecoration, equals('underline'));
|
| + expect(style.textDecoration, contains('underline'));
|
| }));
|
| });
|
|
|
|
|