Skip to content

Commit

Permalink
change colors in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian-Samoticha committed May 5, 2024
1 parent eacbb56 commit fced5dd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/theme/icon_theme_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void main() {
);

final theme = MacosIconTheme.of(capturedContext);
expect(theme.color, CupertinoColors.activeBlue.color);
expect(theme.color, const MacosColor(0xbe0981ff));
expect(theme.size, 20);
});
}
Expand Down
2 changes: 1 addition & 1 deletion test/theme/popup_button_theme_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void main() {

final theme = MacosPopupButtonTheme.of(capturedContext);
expect(theme.backgroundColor, const Color(0xffffffff));
expect(theme.highlightColor, const Color(0xff007aff));
expect(theme.highlightColor, const MacosColor(0xbe0981ff));
expect(theme.popupColor, const Color(0xfff2f2f7));
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/theme/pulldown_button_theme_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void main() {

final theme = MacosPulldownButtonTheme.of(capturedContext);
expect(theme.backgroundColor, const Color(0xffffffff));
expect(theme.highlightColor, const Color(0xff007aff));
expect(theme.highlightColor, const MacosColor(0xbe0981ff));
expect(theme.pulldownColor, const Color(0xfff2f2f7));
});
});
Expand Down
2 changes: 1 addition & 1 deletion test/theme/search_field_theme_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void main() {
);

final theme = MacosSearchFieldTheme.of(capturedContext);
expect(theme.highlightColor, const Color(0xff007aff));
expect(theme.highlightColor, const MacosColor(0xbe0981ff));
expect(theme.resultsBackgroundColor, const Color(0xfff2f2f7));
});
});
Expand Down

0 comments on commit fced5dd

Please sign in to comment.