File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
scripts/utilities/letter-test-data/src Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -105,9 +105,9 @@ cd "$PROJECT_DIR"
105105
106106# Define the three batches with different specification and group IDs
107107BATCHES=(
108- " integration-specification-english:group-english"
109- " integration-specification-braille:group-accessible"
110- " integration-specification-arabic:group-international"
108+ " integration-specification-english:group-english:test-letter-standard "
109+ " integration-specification-braille:group-accessible:test-letter-standard "
110+ " integration-specification-arabic:group-international:test-letter-large "
111111)
112112
113113# Counter for tracking batch creation
@@ -121,7 +121,7 @@ echo ""
121121# Create each batch
122122for batch in " ${BATCHES[@]} " ; do
123123 # Parse specification-id and group-id from the batch definition
124- IFS=' :' read -r SPEC_ID GROUP_ID <<< " $batch"
124+ IFS=' :' read -r SPEC_ID GROUP_ID TEST_LETTER <<< " $batch"
125125
126126 echo " [$BATCH_COUNTER /$TOTAL_BATCHES ] Creating batch with specification-id: $SPEC_ID , group-id: $GROUP_ID -$SUPPLIER_ID "
127127
@@ -134,7 +134,8 @@ for batch in "${BATCHES[@]}"; do
134134 --group-id " $GROUP_ID -$SUPPLIER_ID " \
135135 --status " $STATUS " \
136136 --count " $COUNT " \
137- --ttl-hours " $TTL_HOURS "
137+ --ttl-hours " $TTL_HOURS " \
138+ --test-letter " $TEST_LETTER "
138139
139140 if [[ $? -eq 0 ]]; then
140141 echo " ✓ Batch $BATCH_COUNTER completed successfully"
You can’t perform that action at this time.
0 commit comments