File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class ManifestBackgroundColor extends Audit {
3737 * @param {!Manifest= } manifest
3838 * @return {boolean }
3939 */
40- static hasBackgroundColorValue ( manifest ) {
40+ static getBackgroundColorValue ( manifest ) {
4141 return manifest !== undefined &&
4242 manifest . background_color !== undefined &&
4343 manifest . background_color . value ;
@@ -48,7 +48,7 @@ class ManifestBackgroundColor extends Audit {
4848 * @return {!AuditResult }
4949 */
5050 static audit ( artifacts ) {
51- const bgColor = ManifestBackgroundColor . hasBackgroundColorValue ( artifacts . Manifest . value ) ;
51+ const bgColor = ManifestBackgroundColor . getBackgroundColorValue ( artifacts . Manifest . value ) ;
5252
5353 return ManifestBackgroundColor . generateAuditResult ( {
5454 rawValue : ! ! bgColor ,
You can’t perform that action at this time.
0 commit comments