Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
shippo-lueders committed Jun 26, 2024
1 parent f40f133 commit 8650562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ShippoTests/Integration/TestTransactions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ await sdkFixture.SDK.Transactions.CreateAsync(
Parcels = new List<Parcels>()
{
Parcels.CreateParcelCreateRequest(
new ParcelCreateRequest()
new CreateParcelRequestBody()

Check failure on line 65 in ShippoTests/Integration/TestTransactions.cs

View workflow job for this annotation

GitHub Actions / check

There is no argument given that corresponds to the required formal parameter 'type' of 'CreateParcelRequestBody.CreateParcelRequestBody(CreateParcelRequestBodyType)'

Check failure on line 65 in ShippoTests/Integration/TestTransactions.cs

View workflow job for this annotation

GitHub Actions / check

There is no argument given that corresponds to the required formal parameter 'type' of 'CreateParcelRequestBody.CreateParcelRequestBody(CreateParcelRequestBodyType)'
{
Length = "5",

Check failure on line 67 in ShippoTests/Integration/TestTransactions.cs

View workflow job for this annotation

GitHub Actions / check

'CreateParcelRequestBody' does not contain a definition for 'Length'

Check failure on line 67 in ShippoTests/Integration/TestTransactions.cs

View workflow job for this annotation

GitHub Actions / check

'CreateParcelRequestBody' does not contain a definition for 'Length'
Width = "5",

Check failure on line 68 in ShippoTests/Integration/TestTransactions.cs

View workflow job for this annotation

GitHub Actions / check

'CreateParcelRequestBody' does not contain a definition for 'Width'
Expand Down Expand Up @@ -174,7 +174,7 @@ public async void TestTwoStepLabelWithReferenceIds()
}
);
var parcelTask = sdkFixture.SDK.Parcels.CreateAsync(
new ParcelRequest()
new ParcelCreateRequest()

Check failure on line 177 in ShippoTests/Integration/TestTransactions.cs

View workflow job for this annotation

GitHub Actions / check

Argument 1: cannot convert from 'Shippo.Models.Components.ParcelCreateRequest' to 'Shippo.Models.Requests.CreateParcelRequestBody'
{
Length = "5",
Width = "5",
Expand Down

0 comments on commit 8650562

Please sign in to comment.