Skip to content

Commit

Permalink
booking-up-for-beauty: non-standard space fix (#2235)
Browse files Browse the repository at this point in the history
[no important files changed]
  • Loading branch information
ErikSchierboom authored Feb 28, 2024
1 parent b243df7 commit 3ec8c4a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 3ec8c4a

Please sign in to comment.