| Index: pkg/stack_trace/test/frame_test.dart
|
| diff --git a/pkg/stack_trace/test/frame_test.dart b/pkg/stack_trace/test/frame_test.dart
|
| index bbb905ad133f2374d8603e6e8b7ab519da930b07..b800b0cf4b48feb5584c4bd4716f2b846cdf1529 100644
|
| --- a/pkg/stack_trace/test/frame_test.dart
|
| +++ b/pkg/stack_trace/test/frame_test.dart
|
| @@ -503,7 +503,7 @@ void main() {
|
|
|
| test('returns the relative path for file URIs', () {
|
| expect(new Frame.parseVM('#0 Foo (foo/bar.dart:0:0)').library,
|
| - equals('foo/bar.dart'));
|
| + equals(path.join('foo', 'bar.dart')));
|
| });
|
| });
|
|
|
| @@ -514,7 +514,7 @@ void main() {
|
| '(http://dartlang.org/thing.dart:5:10)').location,
|
| equals('http://dartlang.org/thing.dart 5:10'));
|
| expect(new Frame.parseVM('#0 Foo (foo/bar.dart:1:2)').location,
|
| - equals('foo/bar.dart 1:2'));
|
| + equals('${path.join('foo', 'bar.dart')} 1:2'));
|
| });
|
| });
|
|
|
|
|