diff options
author | Teddy Wing | 2017-11-09 20:10:50 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-09 20:10:50 +0100 |
commit | da35bf4c3ab514e417244aae1d1923487f558584 (patch) | |
tree | 5cb808f5effa60a0d851785769c3753b3fa0efc4 /src/af83.rs | |
parent | 69b930565a118f1f9890492e9f3130e23091b398 (diff) | |
download | kipper-da35bf4c3ab514e417244aae1d1923487f558584.tar.bz2 |
Correct tests after 69b930565a118f1f9890492e9f3130e23091b398
Now that a bunch of function signatures have been rewritten to take
references, update the tests to pass the correct arguments.
Diffstat (limited to 'src/af83.rs')
-rw-r--r-- | src/af83.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/af83.rs b/src/af83.rs index 1547700..5a56c36 100644 --- a/src/af83.rs +++ b/src/af83.rs @@ -21,7 +21,7 @@ mod tests { }; assert_eq!( - job_name(commit_ref), + job_name(&commit_ref), "5912-make-logo-bigger-159f8" ); } |