Bug 1433501 - Sort Marionette prefs lexicographically. r?whimboo draft
authorAndreas Tolfsen <ato@sny.no>
Fri, 26 Jan 2018 17:01:41 +0000
changeset 747683 96d12e3cb669e53c715d63bbe3c200eefd6169dc
parent 747564 329bfa4b804a69d67cd0018d70bbf4cc970f4a64
child 747684 07fbd734e26a5b1fab9287e72d2133cbf872435e
push id96979
push userbmo:ato@sny.no
push dateFri, 26 Jan 2018 17:04:57 +0000
reviewerswhimboo
bugs1433501
milestone60.0a1
Bug 1433501 - Sort Marionette prefs lexicographically. r?whimboo MozReview-Commit-ID: HAt7VYfo460
testing/marionette/prefs/marionette.js
--- a/testing/marionette/prefs/marionette.js
+++ b/testing/marionette/prefs/marionette.js
@@ -5,18 +5,18 @@
 /* global pref */
 
 // Marionette is the remote protocol that lets OOP programs communicate
 // with, instrument, and control Gecko.
 //
 // It is included in Firefox, but not enabled by default unless the
 // -marionette flag is passed.
 
-// Port to start Marionette server on.
-pref("marionette.port", 2828);
-
 // Marionette logging verbosity.  Allowed values are "fatal", "error",
 // "warn", "info", "config", "debug", and "trace".
 pref("marionette.log.level", "info");
 
+// Port to start Marionette server on.
+pref("marionette.port", 2828);
+
 // Sets preferences recommended when using Firefox in automation with
 // Marionette.
 pref("marionette.prefs.recommended", true);