From 1d1930f7631bfd10b4e31794c7f456a1d4e6c209 Mon Sep 17 00:00:00 2001 From: AmirTk Date: Sat, 9 Sep 2023 13:01:28 +0000 Subject: [PATCH] Remove asc from query in order to test default act --- Ordering.http | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ordering.http b/Ordering.http index 59b3256..74a31b9 100644 --- a/Ordering.http +++ b/Ordering.http @@ -4,7 +4,7 @@ GET {{baseUrl}}/products?order=id.desc ?? js response.parsedBody[76].id == 1 ### -GET {{baseUrl}}/products?order=id.asc +GET {{baseUrl}}/products?order=id ?? status == 200 ?? js response.parsedBody[0].id == 1 ?? js response.parsedBody[76].id == 77