Commit 211cf90a by E. Kolpakov

Removing unused imports

parent 72c2d98b
# Imports ########################################################### # Imports ###########################################################
from xml.sax.saxutils import escape from xml.sax.saxutils import escape
from selenium.webdriver.support.wait import WebDriverWait
from tests.utils import load_resource from tests.utils import load_resource
from workbench import scenarios from workbench import scenarios
...@@ -16,7 +15,6 @@ class BaseIntegrationTest(SeleniumTest): ...@@ -16,7 +15,6 @@ class BaseIntegrationTest(SeleniumTest):
"'": "'" "'": "'"
} }
def setUp(self): def setUp(self):
super(BaseIntegrationTest, self).setUp() super(BaseIntegrationTest, self).setUp()
......
from nose_parameterized import parameterized
from selenium.webdriver import ActionChains from selenium.webdriver import ActionChains
from selenium.webdriver.firefox import webdriver
from tests.integration.test_base import BaseIntegrationTest from tests.integration.test_base import BaseIntegrationTest
from tests.utils import load_resource
class ItemDefinition(object): class ItemDefinition(object):
......
...@@ -2,8 +2,6 @@ from nose_parameterized import parameterized ...@@ -2,8 +2,6 @@ from nose_parameterized import parameterized
from tests.integration.test_base import BaseIntegrationTest from tests.integration.test_base import BaseIntegrationTest
from workbench import scenarios from workbench import scenarios
__author__ = 'john'
class TestDragAndDropTitleAndQuestion(BaseIntegrationTest): class TestDragAndDropTitleAndQuestion(BaseIntegrationTest):
@parameterized.expand([ @parameterized.expand([
......
import os
import json
import pkg_resources import pkg_resources
from xml.sax.saxutils import escape
def load_resource(resource_path): def load_resource(resource_path):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment