@@ -44,13 +44,13 @@ mod tests {
4444
4545 // Verify default values are as expected
4646 let returned_config: ExternalConfig = config
47- . ffi_extension ( )
47+ . local_or_ffi_extension ( )
4848 . expect ( "should have external config extension" ) ;
4949 assert_eq ! ( returned_config, ExternalConfig :: default ( ) ) ;
5050
5151 config. set ( "external_config.is_enabled" , "false" ) ?;
5252 let returned_config: ExternalConfig = config
53- . ffi_extension ( )
53+ . local_or_ffi_extension ( )
5454 . expect ( "should have external config extension" ) ;
5555 assert ! ( !returned_config. is_enabled) ;
5656
@@ -74,14 +74,14 @@ mod tests {
7474
7575 // Verify default values are as expected
7676 let returned_options: ExternalConfig = table_options
77- . ffi_extension ( )
77+ . local_or_ffi_extension ( )
7878 . expect ( "should have external config extension" ) ;
7979
8080 assert_eq ! ( returned_options, ExternalConfig :: default ( ) ) ;
8181
8282 table_options. set ( "external_config.is_enabled" , "false" ) ?;
8383 let returned_options: ExternalConfig = table_options
84- . ffi_extension ( )
84+ . local_or_ffi_extension ( )
8585 . expect ( "should have external config extension" ) ;
8686 assert ! ( !returned_options. is_enabled) ;
8787
@@ -105,7 +105,7 @@ mod tests {
105105 // Verify default values are as expected
106106 let returned_config: ExternalConfig = config
107107 . options ( )
108- . ffi_extension ( )
108+ . local_or_ffi_extension ( )
109109 . expect ( "should have external config extension" ) ;
110110 assert_eq ! ( returned_config, ExternalConfig :: default ( ) ) ;
111111
@@ -115,7 +115,7 @@ mod tests {
115115 ) ;
116116 let returned_config: ExternalConfig = config
117117 . options ( )
118- . ffi_extension ( )
118+ . local_or_ffi_extension ( )
119119 . expect ( "should have external config extension" ) ;
120120 assert ! ( !returned_config. is_enabled) ;
121121
0 commit comments