We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec04ae commit 1fa723eCopy full SHA for 1fa723e
NGitLab.Mock/Clients/MergeRequestClient.cs
@@ -491,7 +491,9 @@ public void Delete(long mergeRequestIid)
491
492
if (query.Search != null)
493
{
494
- throw new NotImplementedException();
+ mergeRequests = mergeRequests.Where(m =>
495
+ m.Title.Contains(query.Search, StringComparison.OrdinalIgnoreCase)
496
+ || m.Description.Contains(query.Search, StringComparison.OrdinalIgnoreCase));
497
}
498
499
if (query.SourceBranch != null)
0 commit comments