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

Commit

Permalink
Change number split to prevent clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
javierpedreira authored and nathankleyn committed Apr 18, 2019
1 parent 3a3dc54 commit a3ef4f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ mod tests {
.add_path(Path::new(file))
.expect("can't add file to index");

let time = Time::new(123456789, 0);
let time = Time::new(123_456_789, 0);
let sig = Signature::new("Foo McBarson", "foo.mcbarson@iamarealboy.net", &time)
.expect("couldn't create signature for commit");

Expand Down

0 comments on commit a3ef4f9

Please sign in to comment.