Skip to content

Commit

Permalink
remove test ftp
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Nov 8, 2024
1 parent 2ec6f88 commit e772280
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions prody/tests/proteins/test_wwpdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'

0 comments on commit e772280

Please sign in to comment.