| 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 de0715a9ddd35496362566c7d8101ce55e453873..a140670f840b26a1fb36757478cadca6dee1ad9b 100644
|
| --- a/pkg/stack_trace/test/frame_test.dart
|
| +++ b/pkg/stack_trace/test/frame_test.dart
|
| @@ -114,9 +114,8 @@ void main() {
|
| });
|
|
|
| test('returns the relative path for file URIs', () {
|
| - var uri = path.toUri(path.join('foo', 'bar.dart'));
|
| - expect(new Frame.parse('#0 Foo ($uri:0:0)').library,
|
| - equals(path.join('foo', 'bar.dart')));
|
| + expect(new Frame.parse('#0 Foo (foo/bar.dart:0:0)').library,
|
| + equals('foo/bar.dart'));
|
| });
|
| });
|
|
|
| @@ -126,9 +125,8 @@ void main() {
|
| expect(new Frame.parse('#0 Foo '
|
| '(http://dartlang.org/thing.dart:5:10)').location,
|
| equals('http://dartlang.org/thing.dart 5:10'));
|
| - var uri = path.toUri(path.join('foo', 'bar.dart'));
|
| - expect(new Frame.parse('#0 Foo ($uri:1:2)').location,
|
| - equals('${path.join('foo', 'bar.dart')} 1:2'));
|
| + expect(new Frame.parse('#0 Foo (foo/bar.dart:1:2)').location,
|
| + equals('foo/bar.dart 1:2'));
|
| });
|
| });
|
|
|
|
|