Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
tl-Roberto-Mancinelli committed Nov 22, 2024
1 parent 59b1ffc commit 4b65649
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/TrueLayer/TrueLayer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0"/>
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.0"/>
<PackageReference Include="System.Text.Json" Version="9.0.0"/>
<PackageReference Include="OneOf" Version="3.0.271"/>
<PackageReference Include="TrueLayer.Signing" Version="0.1.15"/>
<PackageReference Update="MinVer" Version="6.0.0" />
Expand Down
4 changes: 0 additions & 4 deletions test/TrueLayer.Tests/Common/AddressTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public void New_address_throws_if_address_line_1_empty_or_whitespace(string addr
[Theory]
[InlineData("")]
[InlineData(" ")]
[InlineData(null)]
public void New_address_throws_if_city_null_or_empty(string city)
{
Assert.Throws<ArgumentException>("city",
Expand All @@ -28,7 +27,6 @@ public void New_address_throws_if_city_null_or_empty(string city)
[Theory]
[InlineData("")]
[InlineData(" ")]
[InlineData(null)]
public void New_address_throws_if_state_null_or_empty(string state)
{
Assert.Throws<ArgumentException>("state",
Expand All @@ -38,7 +36,6 @@ public void New_address_throws_if_state_null_or_empty(string state)
[Theory]
[InlineData("")]
[InlineData(" ")]
[InlineData(null)]
public void New_address_throws_if_zip_null_or_empty(string zip)
{
Assert.Throws<ArgumentException>("zip",
Expand All @@ -48,7 +45,6 @@ public void New_address_throws_if_zip_null_or_empty(string zip)
[Theory]
[InlineData("")]
[InlineData(" ")]
[InlineData(null)]
public void New_address_throws_if_country_code_null_or_empty(string countryCode)
{
Assert.Throws<ArgumentException>("countryCode",
Expand Down

0 comments on commit 4b65649

Please sign in to comment.