Skip to content

Commit

Permalink
creating instruments needs to come before setting prefs
Browse files Browse the repository at this point in the history
because in setting prefs we might ephemerally launch instruments
which will check available devices
  • Loading branch information
jlipps committed Apr 7, 2014
1 parent e1fe06c commit fce54be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/devices/ios/ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ IOS.prototype.start = function (cb, onDie) {
this.detectUdid.bind(this),
this.parseLocalizableStrings.bind(this),
this.setLocale.bind(this),
this.createInstruments.bind(this),
this.setPreferences.bind(this),
this.startLogCapture.bind(this),
this.createInstruments.bind(this),
this.setDeviceAndLaunchSimulator.bind(this),
this.installToRealDevice.bind(this),
this.startInstruments.bind(this),
Expand Down

0 comments on commit fce54be

Please sign in to comment.