Skip to content

Commit

Permalink
fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
msrocka committed Aug 4, 2017
1 parent 81462b7 commit 9d890cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_sat.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def test_add_comment(self):
self.assertEqual('2013; 2017', e1.year)
self.assertEqual('CO2; CH4', e1.tags)
self.assertEqual('USEPA, 2016a', e1.sources)
self.assertEqual('Other; More other', e1.comment)
# the comment of the first entry is completely contained in the comment of
# the second entry -> thus, it will not added to the comment
self.assertEqual('More other', e1.comment)

if __name__ == '__main__':
unittest.main()

0 comments on commit 9d890cc

Please sign in to comment.