diff --git a/exercises/practice/pangram/runtests.jl b/exercises/practice/pangram/runtests.jl index cd437cab9..cf516587d 100644 --- a/exercises/practice/pangram/runtests.jl +++ b/exercises/practice/pangram/runtests.jl @@ -54,6 +54,6 @@ end @test ispangram("the 1 quick brown fox jumps Over the 2 lazy dogs") end -@testset "letters that aren't part of ASCII" begin - @test !ispangram("the 1 qüick bröwn föx jümps över the 2 läzy dögs") +@testset "An Arabic pangram is not an English pangram" begin + @test !ispangram("The scholar and poet Al Farāhīdi wrote this Arabic pangram: صِف خَلقَ خَودِ كَمِثلِ الشَمسِ إِذ بَزَغَت — يَحظى الضَجيعُ بِها نَجلاءَ مِعطارِ") end