diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-03 23:43:54 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-01-03 23:43:54 +0000 |
| commit | 612601a3f14144357abad63c0ddccc553267edbd (patch) | |
| tree | 98061771a9f5a5dd4361fab10cc2229cde89030c | |
| parent | Add schedule to test workflow (diff) | |
| download | paper2remarkable-612601a3f14144357abad63c0ddccc553267edbd.tar.gz paper2remarkable-612601a3f14144357abad63c0ddccc553267edbd.zip | |
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.
| -rw-r--r-- | tests/test_providers.py | 4 |
1 files 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)) |
