~canonical-platform-qa/camera-app/fix1444170-flake8

« back to all changes in this revision

Viewing changes to tests/autopilot/camera_app/tests/__init__.py

  • Committer: Leo Arias
  • Date: 2015-04-29 14:35:46 UTC
  • Revision ID: leo.arias@canonical.com-20150429143546-5m4cpydzzlwietyc
Reverted the unused imports, will remove them in a following branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
import os
11
11
import time
12
12
import shutil
 
13
from time import sleep
13
14
from pkg_resources import resource_filename
14
15
 
15
16
import ubuntuuitoolkit
16
17
from autopilot.input import Mouse, Touch, Pointer
17
18
from autopilot.platform import model
18
19
from autopilot.testcase import AutopilotTestCase
 
20
from autopilot.matchers import Eventually
 
21
from testtools.matchers import Equals
19
22
 
20
23
from camera_app.emulators.main_window import MainWindow
21
24