From 9d213f5713af3a27e1026d275be1676a739d6c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Wed, 1 Dec 2021 22:52:22 +0300 Subject: [PATCH] fix(tests): update log test about exclude path --- git-cliff-core/src/repo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-cliff-core/src/repo.rs b/git-cliff-core/src/repo.rs index f8ad4b9700..92812effdd 100644 --- a/git-cliff-core/src/repo.rs +++ b/git-cliff-core/src/repo.rs @@ -168,7 +168,7 @@ mod test { .unwrap() .to_path_buf(), )?; - let commits = repository.commits(None, None)?; + let commits = repository.commits(None, None, None)?; let last_commit = AppCommit::from(&commits.first().unwrap().clone()); assert_eq!(get_last_commit_hash()?, last_commit.id); if let Err(e) = last_commit.into_conventional() {