Skip to content

Commit 8c6b142

Browse files
committed
Change max length of notification id 60 to 80
1 parent 104c652 commit 8c6b142

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
},
7373
'notification_id': {
7474
'type': 'string',
75-
'maxLength': 60
75+
'maxLength': 80
7676
}
7777
}
7878

tests/handlers/me/notifications/index/test_me_notifications_index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def test_validation_with_no_query_params(self):
201201
def test_validation_notification_id_max(self):
202202
params = {
203203
'queryStringParameters': {
204-
'notification_id': 'A' * 61
204+
'notification_id': 'A' * 81
205205
}
206206
}
207207

0 commit comments

Comments
 (0)