Skip to content

Commit 25cc18d

Browse files
Merge pull request #1088 from DFE-Digital/feature/230789-changed-withdrawn-project-status
Changed "Withdrawn in pre-opening" to "Withdrawn during pre-opening"
2 parents 080240f + 564bc71 commit 25cc18d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dfe.ManageFreeSchoolProjects/Dfe.ManageFreeSchoolProjects.API.Tests/Project/ProjectMapperTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void ToProjectStatusType_ReturnsExpectedEnum(string input, ProjectStatus
7474
//[InlineData("AnyNotRecognised", ProjectStatus.Preopening)]
7575
[InlineData(ProjectStatus.Cancelled, "Cancelled during pre-opening")]
7676
[InlineData(ProjectStatus.Closed, "Closed")]
77-
[InlineData(ProjectStatus.WithdrawnInPreOpening, "Withdrawn in pre-opening")]
77+
[InlineData(ProjectStatus.WithdrawnInPreOpening, "Withdrawn during pre-opening")]
7878
[InlineData(ProjectStatus.ApplicationCompetitionStage, "Application Competition stage")]
7979
[InlineData(ProjectStatus.ApplicationStage, "Application stage")]
8080
[InlineData(ProjectStatus.OpenNotIncludedInFigures, "Open free school - Not included in figures")]

Dfe.ManageFreeSchoolProjects/Dfe.ManageFreeSchoolProjects.API/UseCases/Project/ProjectMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public static string FromProjectStatusType(ProjectStatusType projectStatus)
114114
ProjectStatusType.Open => "Open",
115115
ProjectStatusType.Closed => "Closed",
116116
ProjectStatusType.Cancelled => "Cancelled during pre-opening",
117-
ProjectStatusType.WithdrawnInPreOpening => "Withdrawn in pre-opening",
117+
ProjectStatusType.WithdrawnInPreOpening => "Withdrawn during pre-opening",
118118
ProjectStatusType.Rejected => "Rejected at application stage",
119119
ProjectStatusType.ApplicationCompetitionStage => "Application Competition stage",
120120
ProjectStatusType.ApplicationStage => "Application stage",

0 commit comments

Comments
 (0)