Skip to content

Commit

Permalink
Bump NUnit3TestAdapter from 4.5.0 to 4.6.0 (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jul 29, 2024
1 parent a84bbbf commit 2e008c9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public void CheckTicketing(ICheckNotifier notifier)
return;
}

var evaluation = config.GetDataReleaseabilityOfTicket(Ticket, null, null, out var reason, out var exc);
var evaluation = config.GetDataReleaseabilityOfTicket(Ticket, null, null, [], out var reason, out var exc);

if(evaluation == TicketingReleaseabilityEvaluation.Releaseable)
return;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
using System.Collections.Generic;
using Rdmp.Core.Curation;
using Rdmp.Core.Ticketing;
using Rdmp.Core.ReusableLibraryCode.Checks;

Expand All @@ -22,12 +24,13 @@ public void NavigateToTicket(string ticketName)
}

public TicketingReleaseabilityEvaluation GetDataReleaseabilityOfTicket(string masterTicket, string requestTicket,
string releaseTicket, out string reason, out Exception exception)
string releaseTicket, List<TicketingSystemReleaseStatus> _, out string reason, out Exception exception)
{
reason = null;
exception = null;
return TicketingReleaseabilityEvaluation.Releaseable;
}

public string GetProjectFolderName(string masterTicket) => $"Project {masterTicket}";
public List<string> GetAvailableStatuses() => [];
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using System;
using System.Collections.Generic;
using Rdmp.Core.Curation;
using Rdmp.Core.Ticketing;
using Rdmp.Core.ReusableLibraryCode.Checks;

Expand All @@ -22,12 +24,13 @@ public void NavigateToTicket(string ticketName)
}

public TicketingReleaseabilityEvaluation GetDataReleaseabilityOfTicket(string masterTicket, string requestTicket,
string releaseTicket, out string reason, out Exception exception)
string releaseTicket,List<TicketingSystemReleaseStatus> _, out string reason, out Exception exception)
{
reason = "Nothing is ever releasable through us sorry!";
exception = null;
return TicketingReleaseabilityEvaluation.NotReleaseable;
}

public string GetProjectFolderName(string masterTicket) => $"Project {masterTicket}";
public List<string> GetAvailableStatuses() => [];
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NunitXml.TestLogger" Version="3.1.20" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion RDMP
Submodule RDMP updated 115 files

0 comments on commit 2e008c9

Please sign in to comment.