We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe52fa commit 62fefe8Copy full SHA for 62fefe8
test/widgets/text_test.dart
@@ -33,11 +33,11 @@ void main() {
33
return result;
34
}
35
36
- matchesFontFamilies(Subject<TextStyle> it) => it
+ void matchesFontFamilies(Subject<TextStyle> it) => it
37
..fontFamily.equals(kDefaultFontFamily)
38
..fontFamilyFallback.isNotNull().deepEquals(defaultFontFamilyFallback);
39
40
- matchesWeight(FontWeight weight) => (Subject<TextStyle> it) => it
+ Condition<TextStyle> matchesWeight(FontWeight weight) => (Subject<TextStyle> it) => it
41
..fontWeight.equals(weight)
42
..fontVariations.isNotNull().contains(
43
FontVariation('wght', wghtFromFontWeight(weight)));
0 commit comments