-
Notifications
You must be signed in to change notification settings - Fork 127
Fix lints and tests. #4070
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
Fix lints and tests. #4070
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,7 +110,7 @@ void main() { | |
expect( | ||
useSomethingInAnotherPackage.modelType.linkedName, | ||
matches( | ||
r'<a class="deprecated" href="https://pub.dev/documentation/meta/[^"]*/meta/Required-class.html">Required</a>')); | ||
r'<a href="https://pub.dev/documentation/meta/[^"]*/meta/Required-class.html">Required</a>\?')); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this test change a consequence of the change above, or is it an already failing test thats fixed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated the regexp PTAL, apparently different test versions output different text. |
||
var link = RegExp('/dart-core/String-class.html">String</a>'); | ||
expect(useSomethingInTheSdk.modelType.linkedName, contains(link)); | ||
}); | ||
|
Uh oh!
There was an error while loading. Please reload this page.