Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Remove duplicate semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
EverlastingBugstopper committed Oct 21, 2019
1 parent 830167a commit 8284648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/kv/bucket/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ mod tests {
let actual_path_with_hash =
generate_path_with_hash(&path, hashed_value.to_owned()).unwrap();

let expected_path_with_hash = format!("path/to/asset.{}", hashed_value);;
let expected_path_with_hash = format!("path/to/asset.{}", hashed_value);

assert_eq!(actual_path_with_hash, expected_path_with_hash);
}
Expand Down

0 comments on commit 8284648

Please sign in to comment.