From 4c95dba6bdcab464272f6598ed015300a6daf743 Mon Sep 17 00:00:00 2001 From: Dominic NEED Date: Wed, 18 Dec 2024 15:45:13 +0000 Subject: [PATCH] Amend test to reflect column reordering for ofsted download --- .../Services/ExportServiceTests.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/DfE.FindInformationAcademiesTrusts.UnitTests/Services/ExportServiceTests.cs b/tests/DfE.FindInformationAcademiesTrusts.UnitTests/Services/ExportServiceTests.cs index ea3c29ab3..0c7f48bd4 100644 --- a/tests/DfE.FindInformationAcademiesTrusts.UnitTests/Services/ExportServiceTests.cs +++ b/tests/DfE.FindInformationAcademiesTrusts.UnitTests/Services/ExportServiceTests.cs @@ -410,13 +410,13 @@ public async Task ExportOfstedDataToSpreadsheet_ShouldGenerateCorrectHeadersAsyn worksheet.Cell(3, 9).Value.ToString().Should().Be("Early Years Provision"); worksheet.Cell(3, 10).Value.ToString().Should().Be("Sixth Form Provision"); worksheet.Cell(3, 11).Value.ToString().Should().Be("Date of Previous Inspection"); - worksheet.Cell(3, 12).Value.ToString().Should().Be("Previous Quality of Education"); - worksheet.Cell(3, 13).Value.ToString().Should().Be("Previous Behaviour and Attitudes"); - worksheet.Cell(3, 14).Value.ToString().Should().Be("Previous Personal Development"); - worksheet.Cell(3, 15).Value.ToString().Should().Be("Previous Leadership and Management"); - worksheet.Cell(3, 16).Value.ToString().Should().Be("Previous Early Years Provision"); - worksheet.Cell(3, 17).Value.ToString().Should().Be("Previous Sixth Form Provision"); - worksheet.Cell(3, 18).Value.ToString().Should().Be("Before/After Joining"); + worksheet.Cell(3, 12).Value.ToString().Should().Be("Before/After Joining"); + worksheet.Cell(3, 13).Value.ToString().Should().Be("Previous Quality of Education"); + worksheet.Cell(3, 14).Value.ToString().Should().Be("Previous Behaviour and Attitudes"); + worksheet.Cell(3, 15).Value.ToString().Should().Be("Previous Personal Development"); + worksheet.Cell(3, 16).Value.ToString().Should().Be("Previous Leadership and Management"); + worksheet.Cell(3, 17).Value.ToString().Should().Be("Previous Early Years Provision"); + worksheet.Cell(3, 18).Value.ToString().Should().Be("Previous Sixth Form Provision"); worksheet.Cell(3, 19).Value.ToString().Should().Be("Effective Safeguarding"); worksheet.Cell(3, 20).Value.ToString().Should().Be("Category of Concern"); }