aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/test
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-10-10 12:37:12 +0200
committerHarald Musum <musum@yahooinc.com>2023-10-10 12:37:12 +0200
commit2828b090d0826cf3391741f5046e3b9405e7e7db (patch)
tree7d690b69674e94be70e068747d5e49938162bb50 /controller-server/src/test
parentb0bbcfa758db0a03b7385ae2df1ec6885342247f (diff)
Fix text with description of price items
Diffstat (limited to 'controller-server/src/test')
-rw-r--r--controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/pricing/PricingApiHandlerTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/pricing/PricingApiHandlerTest.java b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/pricing/PricingApiHandlerTest.java
index 2d93237159d..d5e9b1f90da 100644
--- a/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/pricing/PricingApiHandlerTest.java
+++ b/controller-server/src/test/java/com/yahoo/vespa/hosted/controller/restapi/pricing/PricingApiHandlerTest.java
@@ -27,10 +27,10 @@ public class PricingApiHandlerTest extends ControllerContainerCloudTest {
tester.assertJsonResponse(request, """
{
"priceInfo": [
- {"description": "listPrice", "amount": "2400.00"},
- {"description": "volumeDiscount", "amount": "5.00"}
+ {"description": "List price", "amount": "2400.00"},
+ {"description": "Volume discount", "amount": "5.00"}
],
- "totalAmount": "2395.00"
+ "Total": "2395.00"
}
""",
200);