Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
test(theming): fix color palette warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmukler committed Jan 23, 2015
1 parent 2fc0a75 commit 7e8690d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/services/theming/theming.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('$mdThemingProvider', function() {
module('material.core.theming', function($mdThemingProvider, $provide) {
themingProvider = $mdThemingProvider;

testPalette = themingProvider._PALETTES.testPalette = {
testPalette = themingProvider._PALETTES.testPalette = themingProvider._PALETTES.otherTestPalette = {
'50': 'ffebee',
'100': 'ffcdd2',
'200': 'ef9a9a',
Expand All @@ -31,7 +31,7 @@ describe('$mdThemingProvider', function() {
defaultTheme = themingProvider.theme('default')
.primaryPalette('testPalette')
.warnPalette('testPalette')
.accentPalette('testPalette')
.accentPalette('otherTestPalette')
.backgroundPalette('testPalette');

testTheme = themingProvider.theme('test');
Expand Down

0 comments on commit 7e8690d

Please sign in to comment.