-
Notifications
You must be signed in to change notification settings - Fork 27.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
continue->next in Ruby script #104296
continue->next in Ruby script #104296
Conversation
looking now... |
@@ -47,6 +71,7 @@ void main() { | |||
}); | |||
|
|||
tearDownAll(() { | |||
hiddenFile.deleteSync(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need to gracefully handle a failure here, or is that not an issue on mac?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll swap to tryToDelete
to match the next line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with a nit question
@@ -2,8 +2,6 @@ | |||
// Use of this source code is governed by a BSD-style license that can be | |||
// found in the LICENSE file. | |||
|
|||
// @dart = 2.8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also realized I could migrate this file.
@@ -18,19 +18,19 @@ import 'package:test_api/test_api.dart' hide test; // ignore: deprecated_member_ | |||
|
|||
export 'package:test_api/test_api.dart' hide test, isInstanceOf; // ignore: deprecated_member_use | |||
|
|||
void tryToDelete(Directory directory) { | |||
void tryToDelete(FileSystemEntity fileEntity) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can now take either File
or Directory
Fixes #104118
The test change definitely failed on master without the Ruby fix, I double checked this time. 🙂
Pre-launch Checklist
///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.