From c654c058846f686327f48e30b73f656837945335 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 27 Mar 2017 00:27:54 +0200 Subject: [PATCH] Fixup invalid test. --- tests/wpt/mozilla/tests/mozilla/calc.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/mozilla/tests/mozilla/calc.html b/tests/wpt/mozilla/tests/mozilla/calc.html index c0ad739b64c..59903490fd4 100644 --- a/tests/wpt/mozilla/tests/mozilla/calc.html +++ b/tests/wpt/mozilla/tests/mozilla/calc.html @@ -125,7 +125,7 @@ var numberProperties = [ numberProperties.forEach(function(prop) { test(function() { div.style.setProperty(prop, 'calc(1)'); - assert_equals(div.style.getPropertyValue(prop), '1'); + assert_equals(div.style.getPropertyValue(prop), 'calc(1)'); }, 'calc for ' + prop); });