Skip to content

Commit 796335b

Browse files
committed
AYS-385 | IN_PROGRESS Status Has Been Removed from EmergencyEvacuationApplicationStatus Enum
1 parent 27b48f6 commit 796335b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/org/ays/emergency_application/model/enums/EmergencyEvacuationApplicationStatus.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ public enum EmergencyEvacuationApplicationStatus {
77

88
PENDING,
99
IN_REVIEW,
10-
IN_PROGRESS,
1110
RECEIVED_FIRST_APPROVE,
1211
RECEIVED_SECOND_APPROVE,
1312
RECEIVED_THIRD_APPROVE,

src/test/java/org/ays/emergency_application/model/request/EmergencyEvacuationApplicationUpdateRequestBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public EmergencyEvacuationApplicationUpdateRequestBuilder withValidValues() {
1313
return this
1414
.withSeatingCount(1)
1515
.withHasObstaclePersonExist(true)
16-
.withStatus(EmergencyEvacuationApplicationStatus.IN_PROGRESS)
16+
.withStatus(EmergencyEvacuationApplicationStatus.IN_REVIEW)
1717
.withNotes("This is a valid note for the application update.");
1818
}
1919

0 commit comments

Comments
 (0)