ok/jj
1
0
Fork 0
forked from mirrors/jj

cleanup: add explicit import of assert_matches, as required by new rustc

This commit is contained in:
Martin von Zweigbergk 2021-07-24 10:39:53 -07:00
parent c889baaabe
commit d6a1f9848a
2 changed files with 4 additions and 0 deletions

View file

@ -1031,6 +1031,8 @@ pub fn revset_for_commits<'revset, 'repo: 'revset>(
#[cfg(test)]
mod tests {
use std::assert_matches::assert_matches;
use super::*;
#[test]

View file

@ -14,6 +14,8 @@
#![feature(assert_matches)]
use std::assert_matches::assert_matches;
use itertools::Itertools;
use jujutsu_lib::commit::Commit;
use jujutsu_lib::commit_builder::CommitBuilder;