diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-06-13 16:59:25 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-06-13 16:59:25 +0100 |
| commit | 2a3107042aad4c159b6631ad8f897cfc37d0d8ad (patch) | |
| tree | 80caafc784b0965805658d10931676bd927c25fb | |
| parent | bump version and update readme (diff) | |
| download | paper2remarkable-2a3107042aad4c159b6631ad8f897cfc37d0d8ad.tar.gz paper2remarkable-2a3107042aad4c159b6631ad8f897cfc37d0d8ad.zip | |
change acm test paper
| -rw-r--r-- | test.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -66,12 +66,12 @@ class Tests(unittest.TestCase): def test_acm(self): prov = ACMProvider(upload=False) - url = "https://dl.acm.org/citation.cfm?id=3300356" - exp_filename = "Muller_et_al_-_How_Data_Science_Workers_Work_With_Data_Discovery_Capture_Curation_Design_Creation_2019.pdf" + url = "https://dl.acm.org/citation.cfm?id=3025626" + exp_filename = "Kery_Horvath_Myers_-_Variolite_Supporting_Exploratory_Programming_by_Data_Scientists_2017.pdf" filename = prov.run(url) self.assertEqual(exp_filename, os.path.basename(filename)) fsize = os.path.getsize(filename) - self.assertTrue(1691444 < fsize <= 1693444) + self.assertTrue(2349734 < fsize <= 2351734) def test_local(self): local_filename = "test.pdf" @@ -93,5 +93,6 @@ class Tests(unittest.TestCase): fsize = os.path.getsize(filename) self.assertTrue(1828169 < fsize <= 1830169) + if __name__ == "__main__": unittest.main() |
