From c5900e82cfeaf0b0fe190062dbf246c2e9edb9b5 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 28 Feb 2024 12:42:09 +0100 Subject: [PATCH] booking-up-for-beauty: non-standard space fix --- .../booking-up-for-beauty/BookingUpForBeautyTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/concept/booking-up-for-beauty/BookingUpForBeautyTests.cs b/exercises/concept/booking-up-for-beauty/BookingUpForBeautyTests.cs index bb88edb48f..af7e44f660 100644 --- a/exercises/concept/booking-up-for-beauty/BookingUpForBeautyTests.cs +++ b/exercises/concept/booking-up-for-beauty/BookingUpForBeautyTests.cs @@ -164,21 +164,21 @@ public void Is_afternoon_appointment_for_late_evening_appointment() [Task(4)] public void Description_on_friday_afternoon() { - Assert.Equal("You have an appointment on 3/29/2019 3:00:00 PM.", Appointment.Description(new DateTime(2019, 03, 29, 15, 0, 0))); + Assert.Equal("You have an appointment on 3/29/2019 3:00:00 PM.", Appointment.Description(new DateTime(2019, 03, 29, 15, 0, 0)).Replace('\u202F', ' ')); } [Fact] [Task(4)] public void Description_on_thursday_afternoon() { - Assert.Equal("You have an appointment on 7/25/2019 1:45:00 PM.", Appointment.Description(new DateTime(2019, 07, 25, 13, 45, 0))); + Assert.Equal("You have an appointment on 7/25/2019 1:45:00 PM.", Appointment.Description(new DateTime(2019, 07, 25, 13, 45, 0)).Replace('\u202F', ' ')); } [Fact] [Task(4)] public void Description_on_wednesday_morning() { - Assert.Equal("You have an appointment on 9/9/2020 9:09:09 AM.", Appointment.Description(new DateTime(2020, 9, 9, 9, 9, 9))); + Assert.Equal("You have an appointment on 9/9/2020 9:09:09 AM.", Appointment.Description(new DateTime(2020, 9, 9, 9, 9, 9)).Replace('\u202F', ' ')); } [Fact]