We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396741e commit 3e0c7c9Copy full SHA for 3e0c7c9
test/src/edu/stanford/nlp/trees/UniversalPOSMapperTest.java
@@ -10,7 +10,7 @@ public class UniversalPOSMapperTest {
10
public void testMap() {
11
Tree tree = Tree.valueOf("(ROOT (S (NP (DT This)) (VP (VBZ is) (NP (DT a) (JJ simple) (NN test)))))");
12
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)))))");
+ Tree expected = Tree.valueOf("(ROOT (S (NP (PRON This)) (VP (AUX is) (NP (DET a) (ADJ simple) (NOUN test)))))");
14
Assert.assertEquals(expected, newTree);
15
}
16
0 commit comments