Skip to content

Commit 32794af

Browse files
committed
Update test schemas
This updates the test schemas to reflect the fact that postage will soon be able to be "economy". This is done as a record of the data that can be returned, no changes to the code are necessary in order to start sending economy postage.
1 parent 5ad2d04 commit 32794af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration_test/schemas/v2/notification_schemas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"line_5": {"type": ["string", "null"]},
2727
"line_6": {"type": ["string", "null"]},
2828
"postcode": {"type": ["string", "null"]},
29-
"postage": {"enum": ["first", "second", None]},
29+
"postage": {"enum": ["first", "second", "economy", None]},
3030
"type": {"enum": ["sms", "letter", "email"]},
3131
"status": {"type": "string"},
3232
"template": template,
@@ -201,7 +201,7 @@
201201
"properties": {
202202
"id": uuid,
203203
"reference": {"type": ["string", "null"]},
204-
"postage": {"enum": ["first", "second", None]},
204+
"postage": {"enum": ["first", "second", "economy", None]},
205205
},
206206
"required": ["id", "reference"],
207207
}

0 commit comments

Comments
 (0)