Remove unused import & trailing whitespace
This commit is contained in:
parent
c21def528b
commit
bd44e16b07
|
@ -16,7 +16,6 @@ import os
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from google.refine import refine
|
from google.refine import refine
|
||||||
from google.refine import facet
|
|
||||||
|
|
||||||
PATH_TO_TEST_DATA = os.path.join('tests', 'data')
|
PATH_TO_TEST_DATA = os.path.join('tests', 'data')
|
||||||
|
|
||||||
|
@ -26,10 +25,10 @@ class RefineTestCase(unittest.TestCase):
|
||||||
project_file_options = {}
|
project_file_options = {}
|
||||||
project = None
|
project = None
|
||||||
# Section "2. Exploration using Facets": {1}, {2}
|
# Section "2. Exploration using Facets": {1}, {2}
|
||||||
|
|
||||||
def project_path(self):
|
def project_path(self):
|
||||||
return os.path.join(PATH_TO_TEST_DATA, self.project_file)
|
return os.path.join(PATH_TO_TEST_DATA, self.project_file)
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.server = refine.RefineServer()
|
self.server = refine.RefineServer()
|
||||||
self.refine = refine.Refine(self.server)
|
self.refine = refine.Refine(self.server)
|
||||||
|
|
Loading…
Reference in New Issue