diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_providers.py (renamed from tests/test.py) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test.py b/tests/test_providers.py index 83c74af..bb793b3 100644 --- a/tests/test.py +++ b/tests/test_providers.py @@ -11,17 +11,17 @@ import hashlib import shutil import os -from arxiv2remarkable import ( +from paper2remarkable.providers import ( ACM, Arxiv, LocalFile, OpenReview, PdfUrl, - Pubmed, + PubMed, Springer, ) -VERBOSE = False +VERBOSE = True def md5sum(filename): @@ -56,7 +56,7 @@ class Tests(unittest.TestCase): self.assertEqual(exp_filename, os.path.basename(filename)) def test_pmc(self): - prov = Pubmed(upload=False, verbose=VERBOSE) + prov = PubMed(upload=False, verbose=VERBOSE) url = "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3474301/" exp_filename = ( "Hoogenboom_Manske_-_How_to_Write_a_Scientific_Article_2012.pdf" |
