Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Correction to transaction create and update tests #96

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public static function createOperationsProvider(): \Generator
),
20,
),
new TransactionItemPreviewWithNonCatalogPrice(
new TransactionCreateItemWithPrice(
new TransactionNonCatalogPriceWithProduct(
'Annual (per seat)',
new Money('30000', CurrencyCode::USD()),
Expand All @@ -222,7 +222,6 @@ public static function createOperationsProvider(): \Generator
),
),
20,
true,
),
],
),
Expand Down Expand Up @@ -411,7 +410,7 @@ public static function updateOperationsProvider(): \Generator
),
20,
),
new TransactionItemPreviewWithNonCatalogPrice(
new TransactionUpdateItemWithPrice(
new TransactionNonCatalogPriceWithProduct(
'Annual (per seat)',
new Money('30000', CurrencyCode::USD()),
Expand All @@ -421,7 +420,6 @@ public static function updateOperationsProvider(): \Generator
),
),
20,
true,
),
],
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
}
},
{
"include_in_totals": true,
"price": {
"description": "Annual (per seat)",
"product": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
}
},
{
"include_in_totals": true,
"price": {
"description": "Annual (per seat)",
"product": {
Expand Down
Loading