From 612601a3f14144357abad63c0ddccc553267edbd Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Sun, 3 Jan 2021 23:43:54 +0000 Subject: Replace failing test with a different one When downloading the old test file acm now returns a non-functional pdf, so we're replacing it with a different test case. --- tests/test_providers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_providers.py b/tests/test_providers.py index db616e9..528b7b6 100644 --- a/tests/test_providers.py +++ b/tests/test_providers.py @@ -117,8 +117,8 @@ class TestProviders(unittest.TestCase): def test_acm_1(self): prov = ACM(upload=False, verbose=VERBOSE) - url = "https://dl.acm.org/citation.cfm?id=3025626" - exp_filename = "Kery_Horvath_Myers_-_Variolite_Supporting_Exploratory_Programming_by_Data_Scientists_2017.pdf" + url = "https://dl.acm.org/doi/10.1145/3025453.3026030" + exp_filename = "Bergstrom-Lehtovirta_Boring_Hornbaek_-_Placing_and_Recalling_Virtual_Items_on_the_Skin_2017.pdf" filename = prov.run(url) self.assertEqual(exp_filename, os.path.basename(filename)) -- cgit v1.2.3