Skip to content

Commit c6b579d

Browse files
Merge pull request #519 from DLu/fix_citation_by_year_test
Update citations by year data
2 parents 91d1235 + 7a4da4b commit c6b579d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ def test_cites_per_year(self):
571571
"""
572572
author = scholarly.search_author_id('DW_bVcEAAAAJ')
573573
scholarly.fill(author, sections=['counts'])
574-
cpy = {2014: 1, 2015: 2, 2016: 2, 2017: 0, 2018: 2, 2019: 1, 2020: 12, 2021: 21, 2022: 35}
574+
cpy = {2014: 1, 2015: 2, 2016: 2, 2017: 0, 2018: 2, 2019: 0, 2020: 11, 2021: 21, 2022: 37}
575575
for year, count in cpy.items():
576576
self.assertEqual(author['cites_per_year'][year], count)
577577

0 commit comments

Comments
 (0)