aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-10-20 22:15:43 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-10-20 22:15:43 +0200
commit1f07867ec7aebb1b1aa6b806e35a46e73c034605 (patch)
tree30a038d1d3c138e112899a1f686c3a6e3c3b3730 /tests
parentIncrease robustness for arXiv urls (diff)
downloadpaper2remarkable-1f07867ec7aebb1b1aa6b806e35a46e73c034605.tar.gz
paper2remarkable-1f07867ec7aebb1b1aa6b806e35a46e73c034605.zip
fix typo
Diffstat (limited to 'tests')
-rw-r--r--tests/test_providers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_providers.py b/tests/test_providers.py
index 12f748e..b6cce59 100644
--- a/tests/test_providers.py
+++ b/tests/test_providers.py
@@ -98,7 +98,7 @@ class TestProviders(unittest.TestCase):
def test_arxiv_6(self):
prov = Arxiv(upload=False, verbose=VERBOSE)
url = "https://arxiv.org/pdf/1701.05517.pdf?source=post_page---------------------------"
- exp_filename = "Salimans_et_al_-_PixelCNN_Improving_the_PixelCNN_with_Discretized_Logistic_Mixture_Likelihood_and_Other_Modifications_2017.pdf"
+ exp_filename = "Salimans_et_al_-_PixelCNN_Improving_the_PixelCNN_With_Discretized_Logistic_Mixture_Likelihood_and_Other_Modifications_2017.pdf"
filename = prov.run(url)
self.assertEqual(exp_filename, os.path.basename(filename))