File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -852,9 +852,9 @@ impl StoredStatic {
852
852
/// detailsのdefault値をファイルから読み取る関数
853
853
pub fn get_default_details (
854
854
filepath : & str ,
855
- disable_abbreviation : bool ,
855
+ disable_abbreviations : bool ,
856
856
) -> HashMap < CompactString , CompactString > {
857
- if disable_abbreviation {
857
+ if disable_abbreviations {
858
858
return HashMap :: new ( ) ;
859
859
}
860
860
let read_result = utils:: read_csv ( filepath) ;
Original file line number Diff line number Diff line change @@ -823,7 +823,7 @@ mod tests {
823
823
}
824
824
825
825
#[ test]
826
- fn _get_default_defails_with_abbreviation ( ) {
826
+ fn _get_default_details_with_abbreviation ( ) {
827
827
let expected: HashMap < CompactString , CompactString > = HashMap :: new ( ) ;
828
828
let actual =
829
829
StoredStatic :: get_default_details ( "test_files/config/default_details.txt" , true ) ;
You can’t perform that action at this time.
0 commit comments