diff --git a/prody/tests/proteins/test_wwpdb.py b/prody/tests/proteins/test_wwpdb.py index a6657f635..d3962cd16 100644 --- a/prody/tests/proteins/test_wwpdb.py +++ b/prody/tests/proteins/test_wwpdb.py @@ -15,15 +15,15 @@ LOGGER.verbosity = 'none' -class TestFTP(unittest.TestCase): +class TestHTTP(unittest.TestCase): def setUp(self): self.pdb = ['1ubi', '1aar', 'arg', 1234] self.fns = [] self.len = [683, 1218, None, None] - self.fetch = fetchPDBviaFTP - self.protocol = 'FTP' + self.fetch = fetchPDBviaHTTP + self.protocol = 'HTTP' @dec.slow @@ -69,12 +69,3 @@ def tearDown(self): pass except: pass - -class TestHTTP(TestFTP): - - def setUp(self): - - TestFTP.setUp(self) - self.fetch = fetchPDBviaHTTP - self.protocol = 'HTTP' -