* Fix test_basic_create

This commit is contained in:
Matthew Honnibal 2015-11-07 10:04:37 +11:00
parent 1d3884c46d
commit 06f26d258e

View File

@ -63,7 +63,7 @@ class TestTagger(unittest.TestCase):
def test_create(self):
vocab = Vocab()
templates = ((1,),)
model = TaggerModel(vocab.morphology.n_tags, templates, model_loc=None)
model = TaggerModel(vocab.morphology.n_tags, templates)
tagger = Tagger(vocab, model)