| Index: pkg/unittest/lib/src/test_case.dart
|
| diff --git a/pkg/unittest/lib/src/test_case.dart b/pkg/unittest/lib/src/test_case.dart
|
| index 0948e79e1979af6b3d59457e6bb52f8168ac9b7f..03eafd290d6211b421dccba4135c292c7e08559f 100644
|
| --- a/pkg/unittest/lib/src/test_case.dart
|
| +++ b/pkg/unittest/lib/src/test_case.dart
|
| @@ -120,7 +120,7 @@ class TestCase {
|
| // is the first time the result is being set.
|
| void _setResult(String testResult, String messageText, StackTrace stack) {
|
| _message = messageText;
|
| - _stackTrace = _getTrace(stack);
|
| + _stackTrace = getTrace(stack, formatStacks, filterStacks);
|
| if (_stackTrace == null) _stackTrace = stack;
|
| if (result == null) {
|
| _result = testResult;
|
|
|