From 812c8db142897a05369f2f1c4138e5497c8e082b Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 1 Jul 2026 13:17:21 +0200 Subject: [PATCH] improve testing --- e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e.sh b/e2e.sh index 24c7cca..ded9646 100755 --- a/e2e.sh +++ b/e2e.sh @@ -29,13 +29,13 @@ curl -s -X POST "$BASE_URL/orderupdate" \ }' | jq . echo "" -echo "POST /api/orderupdate - Place another SELL order" +echo "POST /api/orderupdate - Place another BUY order" curl -s -X POST "$BASE_URL/orderupdate" \ -H "Content-Type: application/json" \ -d '{ "delivery_start_time": "2024-01-15T10:15:00", "delivery_end_time": "2024-01-15T10:30:00", - "order_side": "SELL", + "order_side": "BUY", "quantity": 20, "price": 45.00 }' | jq .