Update KorAP-Tokenizer to v2.0.0-SNAPSHOT

Change-Id: Ifc08d660e81cdae9144c2a0b863b9a8abb790d20
diff --git a/t/tokenization-korap.t b/t/tokenization-korap.t
index 809dd45..a4c547e 100644
--- a/t/tokenization-korap.t
+++ b/t/tokenization-korap.t
@@ -63,4 +63,13 @@
 $t->attr_is('layer spanList span:nth-child(14)', 'from', 80);
 $t->attr_is('layer spanList span:nth-child(14)', 'to', 92);
 $t->element_count_is('layer spanList span', 14);
+
+$string = "Gefunden auf www.wikipedia.de";
+$ext->reset;
+$ext->tokenize($string);
+$str = $ext->to_string('unknown');
+$t = Test::XML::Loy->new($str);
+$t->attr_is('layer spanList span:nth-child(3)', 'from', 13);
+$t->attr_is('layer spanList span:nth-child(3)', 'to', 29);
+$t->element_count_is('layer spanList span', 3);
 done_testing;