Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 1720aaf

Browse files
committed
Remove unused imports and fix import order. Remove extra whitespace.
1 parent 6bbe636 commit 1720aaf

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

test/test_integration.py

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,25 @@
11
# -*- coding: utf-8 -*-
2-
import dash_core_components as dcc
3-
import dash_html_components as html
4-
import dash_table_experiments as dt
2+
import base64
3+
from datetime import datetime
4+
import io
5+
import os
6+
import sys
7+
import time
8+
import pandas as pd
9+
510
import dash
611
from dash.dependencies import Input, Output, State
12+
import dash_html_components as html
13+
import dash_core_components as dcc
14+
import dash_table_experiments as dt
715

8-
from datetime import datetime
9-
from selenium import webdriver
10-
from selenium.webdriver.common.keys import Keys
1116
try:
1217
from urlparse import urlparse
1318
except ImportError:
1419
from urllib.parse import urlparse
15-
import base64
16-
import importlib
17-
import io
18-
import multiprocessing
19-
import os
20-
import pandas as pd
21-
import percy
22-
import sys
23-
import time
24-
import unittest
2520

2621
from .IntegrationTests import IntegrationTests
27-
from .utils import assert_clean_console, invincible, wait_for, waiter
22+
from .utils import invincible, wait_for, waiter
2823

2924
# Download geckodriver: https://github.com/mozilla/geckodriver/releases
3025
# And add to path:
@@ -431,7 +426,7 @@ def update_pathname(n_clicks, current_pathname):
431426
# Check that pathname is updated through an a tag click via props
432427
self.driver.find_element_by_id('test-a').click()
433428
waiter(self.wait_for_element_by_id)
434-
429+
435430
self.snapshot('link -- /test/pathname/a')
436431
self.assertEqual(self.driver.find_element_by_id('test-pathname').text, '/test/pathname/a')
437432
self.assertEqual(self.driver.find_element_by_id('test-search').text, '')

0 commit comments

Comments
 (0)