Skip to content

Commit

Permalink
Fix missing parameter passed to BaseRichSentenceElement's constructor…
Browse files Browse the repository at this point in the history
… in TestBaseRichSentenceElement.test_is_valid_true_with_all_values_set
  • Loading branch information
marco-nicola committed Apr 27, 2018
1 parent 74f57ae commit 034ac62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_rich_base_sentence_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_is_valid_true_with_all_values_set(self):
upos=UposTag.X,
xpos='XPOS',
feats={'foo': 'bar'},
misc='Misc',
deps={'baz': 'qux'}
deps={'baz': 'qux'},
misc='Misc'
)
self.assertTrue(element.is_valid())

0 comments on commit 034ac62

Please sign in to comment.