aboutsummaryrefslogtreecommitdiff
path: root/src/ats/test_ats_reservation_api.c
diff options
context:
space:
mode:
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