From 9846b5cfd5d7ce7b747e3197dd72c90c9cfef00a Mon Sep 17 00:00:00 2001 From: Daniel Holbert Date: Tue, 9 Sep 2014 22:31:56 -0700 Subject: [PATCH] Bug 1065141: Clarify language in mochitest messages about whether OMTA is working. r=birtles --- layout/style/test/animation_utils.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/layout/style/test/animation_utils.js b/layout/style/test/animation_utils.js index a75780f5909c..6e5b46fb51be 100644 --- a/layout/style/test/animation_utils.js +++ b/layout/style/test/animation_utils.js @@ -101,11 +101,13 @@ function runOMTATest(aTestFunction, aOnSkip) { // We only call this when we know it will fail as otherwise in the // regular success case we will end up inflating the "passed tests" // count by 1 - ok(isWorking, "OMTA is working as expected"); + ok(isWorking, "OMTA should work"); aOnSkip(); } } else { - todo(isWorking, "OMTA is working"); + todo(isWorking, + "OMTA should ideally work, though we don't expect it to work on " + + "this platform/configuration"); aOnSkip(); } }).catch(function(err) {