aboutsummaryrefslogtreecommitdiff
path: root/src/ats/test_ats_reservation_api.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-07 12:55:33 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-07 12:55:33 +0200
commitb953d97e83f71782f1e45ea793e137847372c6de (patch)
treec728b44e4c410291357485ed200bc6eb896a5b8c /src/ats/test_ats_reservation_api.c
parent8d0c55ce57abc11431ba8285d731f1f11c3f8592 (diff)
downloadgnunet-b953d97e83f71782f1e45ea793e137847372c6de.tar.gz
gnunet-b953d97e83f71782f1e45ea793e137847372c6de.zip
-fix: increase quotas due to increased min value fix
Diffstat (limited to 'src/ats/test_ats_reservation_api.c')
-rw-r--r--src/ats/test_ats_reservation_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ats/test_ats_reservation_api.c b/src/ats/test_ats_reservation_api.c
index 46658007b..f6a964df4 100644
--- a/src/ats/test_ats_reservation_api.c
+++ b/src/ats/test_ats_reservation_api.c
@@ -102,14 +102,14 @@ static struct Command test_commands[] = {
102 102
103 103
104 }, 104 },
105 /* 6: reserve another 32k -- should now fail (if MAX_BANDWIDTH_CARRY_S 105 /* 6: reserve another 32M -- should now fail (if MAX_BANDWIDTH_CARRY_S
106 is precisely observed) */ 106 is precisely observed) */
107 { 107 {
108 .code = CMD_RESERVE_BANDWIDTH, 108 .code = CMD_RESERVE_BANDWIDTH,
109 .label = "failing reservation", 109 .label = "failing reservation",
110 .details.reserve_bandwidth = { 110 .details.reserve_bandwidth = {
111 .pid = 0, 111 .pid = 0,
112 .amount = 32 * 1024, 112 .amount = 32 * 1024 * 1024,
113 .expected_result = GNUNET_SYSERR 113 .expected_result = GNUNET_SYSERR
114 } 114 }
115 115