Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3e0c7c9

Browse files
committedMar 14, 2024·
gottem
1 parent 396741e commit 3e0c7c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/src/edu/stanford/nlp/trees/UniversalPOSMapperTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class UniversalPOSMapperTest {
1010
public void testMap() {
1111
Tree tree = Tree.valueOf("(ROOT (S (NP (DT This)) (VP (VBZ is) (NP (DT a) (JJ simple) (NN test)))))");
1212
Tree newTree = UniversalPOSMapper.mapTree(tree);
13-
Tree expected = Tree.valueOf("(ROOT (S (NP (PRON This)) (VP (VERB is) (NP (DET a) (ADJ simple) (NOUN test)))))");
13+
Tree expected = Tree.valueOf("(ROOT (S (NP (PRON This)) (VP (AUX is) (NP (DET a) (ADJ simple) (NOUN test)))))");
1414
Assert.assertEquals(expected, newTree);
1515
}
1616
}

0 commit comments

Comments
 (0)
Please sign in to comment.