mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:44:27 +00:00
Revert "Fixed analyzer test to use dart2js not dartium"
This reverts commit704de3bb3e
. This is needed because we reverted the commit that this was a follow-up to:4a58918382
It was reverted ina8cab7a205
TBR=terry@google.com BUG= Review-Url: https://codereview.chromium.org/3004183002 .
This commit is contained in:
parent
a8cab7a205
commit
e61f6e72ee
1 changed files with 2 additions and 2 deletions
|
@ -223,8 +223,8 @@ class DirectoryBasedDartSdkTest {
|
|||
void test_fromFile_library_firstExact() {
|
||||
DirectoryBasedDartSdk sdk = _createDartSdk();
|
||||
JavaFile dirHtml = new JavaFile.relative(sdk.libraryDirectory, "html");
|
||||
JavaFile dirDart2js = new JavaFile.relative(dirHtml, "dart2js");
|
||||
JavaFile file = new JavaFile.relative(dirDart2js, "html_dart2js.dart");
|
||||
JavaFile dirDartium = new JavaFile.relative(dirHtml, "dartium");
|
||||
JavaFile file = new JavaFile.relative(dirDartium, "html_dartium.dart");
|
||||
expect(file.isFile(), isTrue);
|
||||
Source source = sdk.fromFileUri(file.toURI());
|
||||
expect(source, isNotNull);
|
||||
|
|
Loading…
Reference in a new issue