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 774955b
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions ShippoTests/Integration/TestTransactions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,16 +174,18 @@ public async void TestTwoStepLabelWithReferenceIds()
}
);
var parcelTask = sdkFixture.SDK.Parcels.CreateAsync(
new ParcelRequest()
{
Length = "5",
Width = "5",
Height = "5",
DistanceUnit = DistanceUnitEnum.Cm,
Weight = "2",
MassUnit = WeightUnitEnum.Lb,
Metadata = "Wool Box1",
}
CreateParcelRequestBody.CreateParcelCreateRequest(
new ParcelCreateRequest()
{
Length = "5",
Width = "5",
Height = "5",
DistanceUnit = DistanceUnitEnum.Cm,
Weight = "2",
MassUnit = WeightUnitEnum.Lb,
Metadata = "Wool Box1",
}
)
);
await Task.WhenAll(addressFromTask, addressToTask, parcelTask);
Address addressFrom = await addressFromTask;
Expand Down

0 comments on commit 774955b

Please sign in to comment.