@@ -171,7 +171,7 @@ public void testParameterField () throws KustvaktException {
171
171
@ Test
172
172
public void testMatchInfoGetWithoutSpans () throws KustvaktException {
173
173
Response response = target ().path (API_VERSION )
174
- .path ("corpus/GOE/AGA/01784/p36-46(5)37-45(2)38-42/matchInfo " )
174
+ .path ("corpus/GOE/AGA/01784/p36-46(5)37-45(2)38-42" )
175
175
.queryParam ("foundry" , "*" ).queryParam ("spans" , "false" )
176
176
.request ().get ();
177
177
assertEquals (Status .OK .getStatusCode (), response .getStatus ());
@@ -187,7 +187,7 @@ public void testMatchInfoGetWithoutSpans () throws KustvaktException {
187
187
@ Test
188
188
public void testMatchInfoGetWithoutHighlights () throws KustvaktException {
189
189
Response response = target ().path (API_VERSION )
190
- .path ("corpus/GOE/AGA/01784/p36-46(5)37-45(2)38-42/matchInfo " )
190
+ .path ("corpus/GOE/AGA/01784/p36-46(5)37-45(2)38-42" )
191
191
.queryParam ("foundry" , "xy" ).queryParam ("spans" , "false" )
192
192
.request ().get ();
193
193
assertEquals (Status .OK .getStatusCode (), response .getStatus ());
@@ -223,7 +223,7 @@ public void testMatchInfoWithoutExtension () throws KustvaktException {
223
223
@ Test
224
224
public void testMatchInfoGetWithHighlights () throws KustvaktException {
225
225
Response response = target ().path (API_VERSION )
226
- .path ("corpus/GOE/AGA/01784/p36-46(5)37-45(2)38-42/matchInfo " )
226
+ .path ("corpus/GOE/AGA/01784/p36-46(5)37-45(2)38-42" )
227
227
.queryParam ("foundry" , "xy" ).queryParam ("spans" , "false" )
228
228
.queryParam ("hls" , "true" ).request ().get ();
229
229
assertEquals (Status .OK .getStatusCode (), response .getStatus ());
@@ -249,7 +249,7 @@ public void testMatchInfoGetWithHighlights () throws KustvaktException {
249
249
@ Test
250
250
public void testMatchInfoGet2 () throws KustvaktException {
251
251
Response response = target ().path (API_VERSION )
252
- .path ("corpus/GOE/AGA/01784/p36-46/matchInfo " )
252
+ .path ("corpus/GOE/AGA/01784/p36-46" )
253
253
.queryParam ("foundry" , "*" ).request ().get ();
254
254
assertEquals (Status .OK .getStatusCode (), response .getStatus ());
255
255
String ent = response .readEntity (String .class );
0 commit comments