From 60c25d4c24cbe884445c86216342b9a418e8e0a4 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Mon, 4 May 2026 20:18:04 +0200 Subject: [PATCH] fix: update test assertion for new default page limit --- crates/presentation/tests/api_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/presentation/tests/api_test.rs b/crates/presentation/tests/api_test.rs index f72a80f..7ba5df4 100644 --- a/crates/presentation/tests/api_test.rs +++ b/crates/presentation/tests/api_test.rs @@ -129,7 +129,7 @@ async fn get_api_diary_returns_empty_list() { assert_eq!(json["total_count"], 0); assert_eq!(json["items"], serde_json::json!([])); - assert_eq!(json["limit"], 20); + assert_eq!(json["limit"], 5); assert_eq!(json["offset"], 0); }