chore(deps): upgrade to jj-lib 0.41.0

This commit is contained in:
2026-05-19 11:27:20 +02:00
parent bd6892d91e
commit 412a056e70
4 changed files with 249 additions and 295 deletions
-11
View File
@@ -56,12 +56,6 @@ impl MockJjExecutor {
self
}
/// Configure get_description() to return a specific value
pub fn with_get_description_response(mut self, response: Result<String, Error>) -> Self {
self.get_description_response = response;
self
}
/// Check if is_repository() was called
pub fn was_is_repo_called(&self) -> bool {
self.is_repo_called
@@ -72,11 +66,6 @@ impl MockJjExecutor {
pub fn describe_messages(&self) -> Vec<String> {
self.describe_calls.lock().unwrap().clone()
}
/// Get all revsets visited
pub fn described_revsets(&self) -> Vec<String> {
self.described_revsets.lock().unwrap().clone()
}
}
#[async_trait(?Send)]