File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
crates/oxc_linter/src/config Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1069,7 +1069,7 @@ mod test {
10691069 // Prepare external plugin store with a custom plugin and rule
10701070 let mut store = ExternalPluginStore :: new ( true ) ;
10711071 store. register_plugin (
1072- "path/to/custom" . to_string ( ) ,
1072+ "path/to/custom" . to_string ( ) . into ( ) ,
10731073 "custom" . to_string ( ) ,
10741074 0 ,
10751075 vec ! [ "my-rule" . to_string( ) ] ,
Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ mod test {
544544 // Register a fake external plugin and rule
545545 let mut store = ExternalPluginStore :: new ( true ) ;
546546 store. register_plugin (
547- "path/to/custom-plugin" . to_string ( ) ,
547+ "path/to/custom-plugin" . to_string ( ) . into ( ) ,
548548 "custom" . to_string ( ) ,
549549 0 ,
550550 vec ! [ "my-rule" . to_string( ) ] ,
You can’t perform that action at this time.
0 commit comments