diff --git a/test/unit/shady-unscoped-style.html b/test/unit/shady-unscoped-style.html
index e61847bbcd..7ca54351bb 100644
--- a/test/unit/shady-unscoped-style.html
+++ b/test/unit/shady-unscoped-style.html
@@ -94,7 +94,7 @@
});
test('shared and @apply apply when used with unscoped styles', function() {
- assertComputed(el1.$.fromStyle, '10px', 'padding');
+ assertComputed(el1.$.fromStyle, '10px', 'padding-top');
assertComputed(el1.$.normal, '3px');
assertComputed(el2.$.normal, '3px');
});
@@ -110,8 +110,8 @@
if (!window.ShadyDOM) {
this.skip();
}
- assertComputed(el1.$.fromStyle, '0px', 'margin');
- assertComputed(el2.$.fromStyle, '0px', 'margin');
+ assertComputed(el1.$.fromStyle, '0px', 'margin-top');
+ assertComputed(el2.$.fromStyle, '0px', 'margin-top');
});