Skip to content

Commit

Permalink
Merge pull request #28 from evanjs/hotfix/2020-test-2021
Browse files Browse the repository at this point in the history
"Fix" integration test
  • Loading branch information
raftario authored Feb 3, 2021
2 parents d12c23a + d7bf2ac commit 1897882
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion licensor_fetch/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ fn main() {

let mut licenses_path = resources_path.clone();
licenses_path.push("licenses");
let mut exceptions_path = resources_path.clone();
let mut exceptions_path = resources_path;
exceptions_path.push("exceptions");

let mut lld_archive = Archive::new(decoded_archive.as_slice());
Expand Down
2 changes: 1 addition & 1 deletion tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ fn license_and_name() {
.assert()
.success()
.stdout(predicates::str::starts_with(
"MIT License Copyright (c) 2020 Raphaël Thériault\n",
"MIT License Copyright (c) 2021 Raphaël Thériault\n",
))
.stderr(predicates::str::is_empty());
}
Expand Down

0 comments on commit 1897882

Please sign in to comment.