diff --git a/tests/getsymbols.cpp b/tests/getsymbols.cpp
index ff68c3b38d5ae9f918290ab4adb2c2a1310e897a..effd28d5334878701df5a141ce43d657fc83aa18 100644
--- a/tests/getsymbols.cpp
+++ b/tests/getsymbols.cpp
@@ -27,17 +27,17 @@ struct SymbolsFix
 		Corpus2::Token* the_token = new Corpus2::Token(
 				"One",
 				PwrNlp::Whitespace::ManySpaces);
-		Corpus2::Lexeme l1("aaa", tagset.parse_simple_tag("subst:sg:nom:m1", false));
-		Corpus2::Lexeme l2("aaa", tagset.parse_simple_tag("subst:sg:nom:m2", false));
+		Corpus2::Lexeme l1("aaa", tagset.parse_simple_tag("subst:sg:nom:m1"));
+		Corpus2::Lexeme l2("aaa", tagset.parse_simple_tag("subst:sg:nom:m2"));
 		the_token->add_lexeme(l1);
 		the_token->add_lexeme(l2);
 		s->append(the_token);
 		Corpus2::Token* another_token = new Corpus2::Token(
 				"Two",
 				PwrNlp::Whitespace::ManySpaces);
-		Corpus2::Lexeme l3("aaa", tagset.parse_simple_tag("subst:pl:dat:f", false));
-		Corpus2::Lexeme l4("aaa", tagset.parse_simple_tag("prep:nom:wok", false));
-		Corpus2::Lexeme l5("aaa", tagset.parse_simple_tag("adja", false));
+		Corpus2::Lexeme l3("aaa", tagset.parse_simple_tag("subst:pl:dat:f"));
+		Corpus2::Lexeme l4("aaa", tagset.parse_simple_tag("prep:nom:wok"));
+		Corpus2::Lexeme l5("aaa", tagset.parse_simple_tag("adja"));
 		another_token->add_lexeme(l3);
 		another_token->add_lexeme(l4);
 		another_token->add_lexeme(l5);
diff --git a/tests/getsymbolsinrange.cpp b/tests/getsymbolsinrange.cpp
index 51374a4f8986973d6dad3f8c78e4ce5a27b47879..521ba4c573a6126d65d161f4c59bdbde7a1ea9a5 100644
--- a/tests/getsymbolsinrange.cpp
+++ b/tests/getsymbolsinrange.cpp
@@ -33,17 +33,17 @@ struct SymbolsInRangeFix
 		Corpus2::Token* the_token = new Corpus2::Token(
 				"One",
 				PwrNlp::Whitespace::ManySpaces);
-		Corpus2::Lexeme l1("aaa", tagset.parse_simple_tag("subst:sg:nom:m1", false));
-		Corpus2::Lexeme l2("aaa", tagset.parse_simple_tag("subst:sg:nom:m2", false));
+		Corpus2::Lexeme l1("aaa", tagset.parse_simple_tag("subst:sg:nom:m1"));
+		Corpus2::Lexeme l2("aaa", tagset.parse_simple_tag("subst:sg:nom:m2"));
 		the_token->add_lexeme(l1);
 		the_token->add_lexeme(l2);
 		s->append(the_token);
 		Corpus2::Token* another_token = new Corpus2::Token(
 				"Two",
 				PwrNlp::Whitespace::ManySpaces);
-		Corpus2::Lexeme l3("aaa", tagset.parse_simple_tag("subst:pl:dat:f", false));
-		Corpus2::Lexeme l4("aaa", tagset.parse_simple_tag("prep:nom:wok", false));
-		Corpus2::Lexeme l5("aaa", tagset.parse_simple_tag("adja", false));
+		Corpus2::Lexeme l3("aaa", tagset.parse_simple_tag("subst:pl:dat:f"));
+		Corpus2::Lexeme l4("aaa", tagset.parse_simple_tag("prep:nom:wok"));
+		Corpus2::Lexeme l5("aaa", tagset.parse_simple_tag("adja"));
 		another_token->add_lexeme(l3);
 		another_token->add_lexeme(l4);
 		another_token->add_lexeme(l5);
diff --git a/tests/values.cpp b/tests/values.cpp
index f15247bb2a12808f1f7947bd8d292514100dcfa5..d87c1b1f3744ea5e9280f5e87c40c220c6c7c257 100644
--- a/tests/values.cpp
+++ b/tests/values.cpp
@@ -68,8 +68,8 @@ BOOST_AUTO_TEST_CASE(tset_ops)
 {
 	TSet s1, s2;
 	const Corpus2::Tagset& tagset = Corpus2::get_named_tagset("kipi");
-	Corpus2::Tag subst_tag = tagset.parse_tag("subst:sg:nom:f", false)[0];
-	Corpus2::Tag adj_tag = tagset.parse_tag("adj:pl:acc:m3:pos", false)[0];
+	Corpus2::Tag subst_tag = tagset.parse_simple_tag("subst:sg:nom:f");
+	Corpus2::Tag adj_tag = tagset.parse_simple_tag("adj:pl:acc:m3:pos");
 
 	BOOST_CHECK(s1.equals(s2));
 	BOOST_CHECK(s1.is_subset_of(s2));