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

Commit 4946168

Browse files
committed
fix rgba to rgb
1 parent bc6dabb commit 4946168

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/services/theming/theming.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ describe('$mdThemingProvider', function() {
266266
expect(parse('.md-THEME_NAME-theme { color: "{{background-default-contrast-0.05}}"; }')[0].content)
267267
.toEqual('color: rgba(0,0,0,0.05);');
268268
expect(parse('.md-THEME_NAME-theme { color: "{{primary-contrast}}"; }')[0].content)
269-
.toEqual('color: rgba(255,255,255,1.0);');
269+
.toEqual('color: rgb(255,255,255);');
270270
expect(parse('.md-THEME_NAME-theme { color: "{{primary-contrast-secondary}}"; }')[0].content)
271271
.toEqual('color: rgba(255,255,255,0.7);');
272272
});

0 commit comments

Comments
 (0)