-
Notifications
You must be signed in to change notification settings - Fork 58
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
Address deprecation lints #94
Address deprecation lints #94
Conversation
RavenNumber of Findings: 0 |
Codecov Report
@@ Coverage Diff @@
## master #94 +/- ##
=======================================
Coverage 94.86% 94.86%
=======================================
Files 31 31
Lines 1536 1536
=======================================
Hits 1457 1457
Misses 79 79 |
Can you also bump the over_react_test dep to 1.0.1 in this PR too? |
@jacehensley-wf I did. |
🤦♂️ I didn't see that |
+1 |
test/wsd_test_util/zone.dart
Outdated
@@ -37,11 +37,15 @@ void storeZone([Zone zone]) { | |||
/// Calls [expect] in package:test/test.dart in the zone stored in [setZone]. | |||
/// | |||
/// Useful for expectations in blocks called in other zones. | |||
void zonedExpect(actual, matcher, | |||
{String reason, bool verbose: false, ErrorFormatter formatter}) { | |||
void zonedExpect(actual, matcher, { |
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.
This is not part of the public API, these can just be removed now.
ba42767
to
1690860
Compare
@jacehensley-wf feedback addressed. |
+1 |
QA +10
Ready to merge. |
Ultimate problem:
The
dart-lang/test
has a number of deprecations that we couldn't address previously because of some issues with thethrowsA
replacement. Those issues appear to have been fixed in a recent update to the test package.How it was fixed:
Address deprecations
Testing suggestions:
Passing CI build
Areas of regression
Tests
FYA: @greglittlefield-wf @jacehensley-wf @clairesarsam-wf