tracks/fsharp/exercises/pangram/PangramTest.fs in trackler-2.2.1.47 vs tracks/fsharp/exercises/pangram/PangramTest.fs in trackler-2.2.1.48

- old
+ new

@@ -1,6 +1,6 @@ -// This file was auto-generated based on version 1.2.0 of the canonical data. +// This file was auto-generated based on version 1.3.0 of the canonical data. module PangramTest open FsUnit.Xunit open Xunit @@ -22,11 +22,11 @@ [<Fact(Skip = "Remove to run test")>] let ``Missing character 'x'`` () = isPangram "a quick movement of the enemy will jeopardize five gunboats" |> should equal false [<Fact(Skip = "Remove to run test")>] -let ``Another missing character 'x'`` () = - isPangram "the quick brown fish jumps over the lazy dog" |> should equal false +let ``Another missing character, e.g. 'h'`` () = + isPangram "five boxing wizards jump quickly at it" |> should equal false [<Fact(Skip = "Remove to run test")>] let ``Pangram with underscores`` () = isPangram "the_quick_brown_fox_jumps_over_the_lazy_dog" |> should equal true