File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -118,12 +118,12 @@ pub fn get_codecs(
118118 continue ;
119119 }
120120
121- let codec_str = fs:: read_to_string ( & codecs_path. join ( & codec_filename) ) . unwrap_or_default ( ) ;
121+ let codec_str = fs:: read_to_string ( codecs_path. join ( & codec_filename) ) . unwrap_or_default ( ) ;
122122 let codec_dec_test_str =
123- fs:: read_to_string ( & codecs_path. join ( format ! ( "test_decode_{}on" , codec_filename) ) )
123+ fs:: read_to_string ( codecs_path. join ( format ! ( "test_decode_{}on" , codec_filename) ) )
124124 . unwrap_or ( "[]" . to_string ( ) ) ;
125125 let codec_enc_test_str =
126- fs:: read_to_string ( & codecs_path. join ( format ! ( "test_encode_{}on" , codec_filename) ) )
126+ fs:: read_to_string ( codecs_path. join ( format ! ( "test_encode_{}on" , codec_filename) ) )
127127 . unwrap_or ( "[]" . to_string ( ) ) ;
128128
129129 out. insert (
You can’t perform that action at this time.
0 commit comments