Skip to content

Commit 7084925

Browse files
rafamizesrultor
authored andcommitted
chore: add coverage suppressing statements
1 parent 1a0949b commit 7084925

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lib/src/brands/google/google_grad.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ class GoogleGrad extends SwatchBase {
1616
///
1717
/// [google-color-sequence](https://www.behance.net/gallery/9028077/Google-Visual-Assets-Guidelines-Part-1)
1818
const GoogleGrad()
19+
// coverage:ignore-start
1920
: super(const [
2021
Google.blue(),
2122
Google.red(),
2223
Google.yellow(),
2324
Google.green(),
2425
]);
26+
// coverage:ignore-end
2527

2628
@override
2729
List<Color> get colors => List.unmodifiable(super.colors);

lib/src/brands/instagram/instagram_grad.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ class InstagramGrad extends SwatchBase {
2222
///
2323
/// [instagram-colors](https://usbrandcolors.com/instagram-colors/)
2424
const InstagramGrad()
25+
// coverage:ignore-start
2526
: super(const [
26-
Instagram.royalBlue(),
27+
Instagram.royalBlue(),
2728
Instagram.blue(),
2829
Instagram.purple(),
2930
Instagram.darkPink(),
@@ -34,6 +35,7 @@ class InstagramGrad extends SwatchBase {
3435
Instagram.yellow(),
3536
Instagram.lightYellow(),
3637
]);
38+
// coverage:ignore-end
3739

3840
@override
3941
List<Color> get colors => List.unmodifiable(super.colors);

0 commit comments

Comments
 (0)