From patchwork Thu Oct 14 12:00:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D11657: rust: Reformat source code From: phabricator X-Patchwork-Id: 49981 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Thu, 14 Oct 2021 12:00:43 +0000 SimonSapin created this revision. Herald added a reviewer: hg-reviewers. Herald added a subscriber: mercurial-patches. REVISION SUMMARY This fixes test-check-rust-format.t which is currently failing on the default branch. REPOSITORY rHG Mercurial BRANCH default REVISION DETAIL https://phab.mercurial-scm.org/D11657 AFFECTED FILES rust/hg-core/src/revlog/revlog.rs CHANGE DETAILS To: SimonSapin, #hg-reviewers Cc: mercurial-patches, mercurial-devel diff --git a/rust/hg-core/src/revlog/revlog.rs b/rust/hg-core/src/revlog/revlog.rs --- a/rust/hg-core/src/revlog/revlog.rs +++ b/rust/hg-core/src/revlog/revlog.rs @@ -76,7 +76,8 @@ Some(index_mmap) => { let version = get_version(&index_mmap)?; if version != 1 { - // A proper new version should have had a repo/store requirement. + // A proper new version should have had a repo/store + // requirement. return Err(HgError::corrupted("corrupted revlog")); } @@ -424,6 +425,6 @@ .with_version(1) .build(); - assert_eq!(get_version(&bytes).map_err(|_err|()), Ok(1)) + assert_eq!(get_version(&bytes).map_err(|_err| ()), Ok(1)) } }