Skip to content

Commit

Permalink
Update dependency, fix xunit warning
Browse files Browse the repository at this point in the history
  • Loading branch information
thohng committed Jan 13, 2024
1 parent 0797938 commit a844ae4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions NetLah.SpaServices.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{47FCBAC6-94E9-45BD-BAC1-E707921CC0B5}"
ProjectSection(SolutionItems) = preProject
.github\workflows\aspnet-core.yml = .github\workflows\aspnet-core.yml
Common.props = Common.props
DevNotes.md = DevNotes.md
Directory.Build.override.targets = Directory.Build.override.targets
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
docker-build.ps1 = docker-build.ps1
Expand Down
2 changes: 1 addition & 1 deletion src/Hosting/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<ItemGroup>
<!--the helpers -->
<PackageReference Update="NetLah.Abstractions" Version="0.2.1" />
<PackageReference Update="NetLah.Abstractions" Version="1.0.0" />
<PackageReference Update="NetLah.Extensions.CommandLineUtils" Version="0.1.0-a1.2" />
<PackageReference Update="NetLah.Extensions.Configuration" Version="0.2.2" />
<PackageReference Update="NetLah.Extensions.EventAggregator" Version="0.2.1" />
Expand Down
4 changes: 2 additions & 2 deletions test/WebApp.Test/DebugRoutesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ namespace WebApp.Test;
public class DebugRoutesTest
{
[Theory]
[InlineData(null, null!, "debug/routes", "debug/routes1")]
[InlineData(null, null, "debug/routes", "debug/routes1")]
[InlineData("debug/routes", "debug/routes", "debug/routes1")]
[InlineData("debug/routes", "debug/routes/", "debug/routes1")]
public async Task DebugRoutesSuccess(string? value, string url, params string[] errorUrls)
public async Task DebugRoutesSuccess(string? value, string? url, params string[] errorUrls)
{
await using var factory = new WebApplicationFactory<Program>();

Expand Down

0 comments on commit a844ae4

Please sign in to comment.