Skip to content

Commit

Permalink
revset: fix mine() test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
emilazy committed Jul 8, 2024
1 parent bb3b590 commit 3aa7561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tests/test_revset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2443,7 +2443,7 @@ fn test_evaluate_expression_mine() {
})
.write()
.unwrap();
// Can find a unique match by name
// Can find a unique match
assert_eq!(
resolve_commit_ids(mut_repo, "mine()"),
vec![commit2.id().clone()]
Expand All @@ -2457,7 +2457,7 @@ fn test_evaluate_expression_mine() {
})
.write()
.unwrap();
// Can find multiple matches by name
// Can find multiple matches
assert_eq!(
resolve_commit_ids(mut_repo, "mine()"),
vec![commit3.id().clone(), commit2.id().clone()]
Expand Down

0 comments on commit 3aa7561

Please sign in to comment.