Skip to content

Commit 15bcfb3

Browse files
committed
Gottem
1 parent 396741e commit 15bcfb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

itest/src/edu/stanford/nlp/pipeline/CoNLLUOutputterITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void testSimpleSentence() throws IOException {
4242
String expected = "1\tCoNLL\tconll\tNOUN\tNN\tNumber=Sing\t3\tcompound\t3:compound\tSpaceAfter=No\n" +
4343
"2\t-\t-\tPUNCT\tHYPH\t_\t3\tpunct\t3:punct\tSpaceAfter=No\n" +
4444
"3\tU\tu\tNOUN\tNN\tNumber=Sing\t5\tnsubj\t5:nsubj\t_\n" +
45-
"4\tis\tbe\tVERB\tVBZ\tMood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin\t5\tcop\t5:cop\t_\n" +
45+
"4\tis\tbe\tAUX\tVBZ\tMood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin\t5\tcop\t5:cop\t_\n" +
4646
"5\tneat\tneat\tADJ\tJJ\tDegree=Pos\t0\troot\t0:root\tSpaceAfter=No\n" +
4747
"6\t.\t.\tPUNCT\t.\t_\t5\tpunct\t5:punct\t_\n" +
4848
"\n" +

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

Lines changed: 1 addition & 1 deletion
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)