Bug 1319989 - ESlint; r?pbro draft
authorYann Gravrand <y.gravrand@gmail.com>
Sun, 27 Nov 2016 16:04:48 +0100
changeset 444195 e531d7d6e923b7f30bc9cf982f3a5564e481c29f
parent 444192 e438b2d984c96c267e3a7cf0c041d5fc21ca39d9
child 538258 875df3521cef1d64d185a74ba6d6c312180b129b
push id37225
push userbmo:y.gravrand@gmail.com
push dateSun, 27 Nov 2016 15:05:25 +0000
reviewerspbro
bugs1319989
milestone53.0a1
Bug 1319989 - ESlint; r?pbro MozReview-Commit-ID: EgRqg6smpnu
devtools/client/animationinspector/test/browser_animation_timeline_shows_time_info.js
--- a/devtools/client/animationinspector/test/browser_animation_timeline_shows_time_info.js
+++ b/devtools/client/animationinspector/test/browser_animation_timeline_shows_time_info.js
@@ -41,15 +41,15 @@ add_task(function* () {
     if (controller.animationPlayers[i].state.fill) {
       ok(title.match(/Fill: /), "The tooltip shows the fill");
     }
     if (controller.animationPlayers[i].state.direction) {
       if (controller.animationPlayers[i].state.direction === "normal") {
         ok(!title.match(/Direction: /),
           "The tooltip doesn't show the direction if it is 'normal'");
       } else {
-          ok(title.match(/Direction: /), "The tooltip shows the direction");
+        ok(title.match(/Direction: /), "The tooltip shows the direction");
       }
     }
     ok(!title.match(/Iteration start:/),
       "The tooltip doesn't show the iteration start");
   });
 });