| Index: pkg/unittest/lib/html_config.dart
|
| diff --git a/pkg/unittest/lib/html_config.dart b/pkg/unittest/lib/html_config.dart
|
| index dd760bd631d7fbe4909e2a47c4af5dc9c51d41d4..ef23d52da4b79e81d11841133d84c93b3603ffa1 100644
|
| --- a/pkg/unittest/lib/html_config.dart
|
| +++ b/pkg/unittest/lib/html_config.dart
|
| @@ -134,7 +134,7 @@ class HtmlConfiguration extends SimpleConfiguration {
|
| void onInit() {
|
| // For Dart internal tests, we want to turn off stack frame
|
| // filtering, which we do with this meta-header.
|
| - var meta = query('meta[name="dart.unittest"]');
|
| + var meta = querySelector('meta[name="dart.unittest"]');
|
| filterStacks = meta == null ? true :
|
| !meta.content.contains('full-stack-traces');
|
| _installHandlers();
|
|
|