~elopio/autopilot/fix1257055-slow_drag

« back to all changes in this revision

Viewing changes to autopilot/input/_uinput.py

  • Committer: Leo Arias
  • Date: 2014-02-11 08:03:09 UTC
  • Revision ID: leo.arias@canonical.com-20140211080309-6mttlu3dyyj5hlm2
Updated the tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
564
564
 
565
565
            current_x += step_x
566
566
            current_y += step_y
567
 
            self.device._finger_move(current_x, current_y)
 
567
            self._device.finger_move(current_x, current_y)
568
568
 
569
569
            sleep(time_between_events)
570
570
 
571
 
        self.device._finger_up()
 
571
        self._device.finger_up()
572
572
 
573
573
 
574
574
# veebers: there should be a better way to handle this.