@@ -229,7 +229,7 @@ mod tests {
229229 "@id": "http://example.com/ns#me",
230230 "foaf:name": "Arthur"
231231 } "# ;
232- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
232+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
233233
234234 let json = parse_json ( st) . expect ( "valid json" ) ;
235235 let prefixes = derive_prefixes ( & json, & url) ;
@@ -249,7 +249,7 @@ mod tests {
249249 "@id": "http://example.com/ns#me",
250250 "foaf:name": "Arthur"
251251 } "# ;
252- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
252+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
253253
254254 let json = parse_json ( st) . expect ( "valid json" ) ;
255255 let prefixes = derive_prefixes ( & json, & url) ;
@@ -270,7 +270,7 @@ mod tests {
270270 "@id": "http://example.com/ns#me",
271271 "name": "Arthur"
272272 } "# ;
273- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
273+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
274274
275275 let json = parse_json ( st) . expect ( "valid json" ) ;
276276 let prefixes = derive_prefixes ( & json, & url) ;
@@ -296,7 +296,7 @@ mod tests {
296296 "@id": "http://example.com/ns#me",
297297 "foaf:name": "Arthur"
298298 } "# ;
299- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
299+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
300300
301301 let json = parse_json ( st) . expect ( "valid json" ) ;
302302 let prefixes = derive_prefixes ( & json, & url) ;
@@ -316,7 +316,7 @@ mod tests {
316316 "@id": "http://example.com/ns#me",
317317 "foaf:name": "Arthur"
318318 } "# ;
319- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
319+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
320320
321321 let json = parse_json ( st) . expect ( "valid json" ) ;
322322 let prefixes = derive_prefixes ( & json, & url) ;
@@ -345,7 +345,7 @@ mod tests {
345345 "@id": "http://example.com/ns#me",
346346 "@type": "http://example.com/ns#my_type"
347347 } "# ;
348- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
348+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
349349
350350 let json = parse_json ( st) . expect ( "valid json" ) ;
351351 let prefixes = derive_prefixes ( & json, & url) ;
@@ -376,7 +376,7 @@ mod tests {
376376 "@context": {"foaf": "http://xmlns.com/foaf/0.1/"} ,
377377 "foaf:name": "Arthur"
378378 } "# ;
379- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
379+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
380380
381381 let json = parse_json ( st) . expect ( "valid json" ) ;
382382 let prefixes = derive_prefixes ( & json, & url) ;
@@ -406,7 +406,7 @@ mod tests {
406406 "foaf:name": "Arthur"
407407 } ]
408408 } "# ;
409- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
409+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
410410
411411 let json = parse_json ( st) . expect ( "valid json" ) ;
412412 let prefixes = derive_prefixes ( & json, & url) ;
@@ -436,7 +436,7 @@ mod tests {
436436 "foaf:name": "Arthur"
437437 } ]
438438 } "# ;
439- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
439+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
440440
441441 let json = parse_json ( st) . expect ( "valid json" ) ;
442442 let prefixes = derive_prefixes ( & json, & url) ;
@@ -469,7 +469,7 @@ mod tests {
469469 }
470470 }
471471 } "# ;
472- let url = lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
472+ let url = lsp_core :: lsp_types:: Url :: parse ( "memory://test.jsonld" ) . unwrap ( ) ;
473473
474474 let json = parse_json ( st) . expect ( "valid json" ) ;
475475 let prefixes = derive_prefixes ( & json, & url) ;
0 commit comments