| Index: tests/standalone/io/status_file_parser_test.dart
|
| diff --git a/tests/standalone/io/status_file_parser_test.dart b/tests/standalone/io/status_file_parser_test.dart
|
| index aaf96048e7d8a61cf03f97d509f6d177845ffb2f..37696822650156f0e8a8995a52de1fefd204f27b 100644
|
| --- a/tests/standalone/io/status_file_parser_test.dart
|
| +++ b/tests/standalone/io/status_file_parser_test.dart
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| @@ -37,7 +37,7 @@ void TestReadStatusFile(String filePath) {
|
| File file = new File(fixedFilePath(filePath));
|
| if (file.existsSync()) {
|
| List<Section> sections = new List<Section>();
|
| - ReadConfigurationInto(file.path, sections, () {
|
| + ReadConfigurationInto(file.name, sections, () {
|
| Expect.isTrue(sections.length > 0);
|
| });
|
| }
|
|
|