Skip to content

Commit

Permalink
booking-up-for-beauty: non-standard space fix (#1233)
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 930ca1c commit 46252f7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,21 +157,21 @@ let ``Is afternoon appointment for late evening appointment`` () =
[<UseCulture("en-US")>]
[<Task(4)>]
let ``Description on Friday afternoon`` () =
description (DateTime(2019, 3, 29, 15, 0, 0))
(description (DateTime(2019, 3, 29, 15, 0, 0))).Replace('\u202F', ' ')
|> should equal "You have an appointment on 3/29/2019 3:00:00 PM."

[<Fact>]
[<UseCulture("en-US")>]
[<Task(4)>]
let ``Description on Thursday afternoon`` () =
description (DateTime(2019, 7, 25, 13, 45, 0))
(description (DateTime(2019, 7, 25, 13, 45, 0))).Replace('\u202F', ' ')
|> should equal "You have an appointment on 7/25/2019 1:45:00 PM."

[<Fact>]
[<UseCulture("en-US")>]
[<Task(4)>]
let ``Description on Wednesday morning`` () =
description (DateTime(2020, 9, 9, 9, 9, 9))
(description (DateTime(2020, 9, 9, 9, 9, 9))).Replace('\u202F', ' ')
|> should equal "You have an appointment on 9/9/2020 9:09:09 AM."

[<Fact>]
Expand Down

0 comments on commit 46252f7

Please sign in to comment.