File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -442,23 +442,18 @@ mod tests {
442442
443443 #[ fixture]
444444 #[ once]
445- fn install_spatial ( ) {
445+ fn install_extensions ( ) {
446446 let connection = Connection :: open_in_memory ( ) . unwrap ( ) ;
447+ connection. execute ( "INSTALL icu" , [ ] ) . unwrap ( ) ;
447448 connection. execute ( "INSTALL spatial" , [ ] ) . unwrap ( ) ;
448449 }
449450
450451 #[ allow( unused_variables) ]
451452 #[ fixture]
452- fn client ( install_spatial : ( ) ) -> Client {
453+ fn client ( install_extensions : ( ) ) -> Client {
453454 Client :: new ( ) . unwrap ( )
454455 }
455456
456- #[ allow( unused_variables) ]
457- #[ rstest]
458- fn new ( install_spatial : ( ) ) {
459- Client :: new ( ) . unwrap ( ) ;
460- }
461-
462457 #[ rstest]
463458 fn extensions ( client : Client ) {
464459 let _ = client. extensions ( ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments