Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 5f7e027

Browse files
aamcommit-bot@chromium.org
authored andcommitted
[gardening] Ensure path is converted to uri in reload tests.
Follow-up to 91c628d Change-Id: I2504d0b69c060b5d77002b3b0c58ec0ff6e0a4af Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/188640 Reviewed-by: Alexander Aprelev <[email protected]> Commit-Queue: Alexander Aprelev <[email protected]>
1 parent 06e5c3e commit 5f7e027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/tests/vm/dart_2/isolates/reload_utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Future<List<String>> generateDills(String tempDir, String testDartFile) async {
2525
await File(testFile).writeAsString(version);
2626
final dillFile = path.join(tempDir, 'test.dart.${i++}.dill');
2727
await compile(testFile, dillFile);
28-
dills.add(dillFile);
28+
dills.add(Uri.file(dillFile).toString());
2929
}
3030
return dills;
3131
}

0 commit comments

Comments
 (0)