Skip to content

Commit

Permalink
gottem
Browse files Browse the repository at this point in the history
  • Loading branch information
AngledLuffa committed Mar 14, 2024
1 parent 396741e commit 3e0c7c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class UniversalPOSMapperTest {
public void testMap() {
Tree tree = Tree.valueOf("(ROOT (S (NP (DT This)) (VP (VBZ is) (NP (DT a) (JJ simple) (NN test)))))");
Tree newTree = UniversalPOSMapper.mapTree(tree);
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)))))");
Assert.assertEquals(expected, newTree);
}
}
Expand Down

0 comments on commit 3e0c7c9

Please sign in to comment.