exercism / purescript

Exercism exercises in PureScript.
https://exercism.org/tracks/purescript
MIT License
37 stars 32 forks source link

Instructions doesn't match the test #224

Closed neilhan closed 2 years ago

neilhan commented 3 years ago

https://github.com/exercism/purescript/blob/bd3c772ec6da6f2d1d018ce36c337ced984102ad/exercises/practice/bob/test/Main.purs#L42 Instruction says: """ He answers 'Calm down, I know what I'm doing!' if you yell a question at him. """ In the test, the assert was incorrect. It should be:

test "forceful questions" do
      Assert.equal "Calm down, I know what I'm doing!" $
        Bob.hey "WHAT THE HELL WERE YOU THINKING?"
emiel commented 3 years ago

Thanks for reporting @neilhan! This issue has been reported once before (https://github.com/exercism/purescript/issues/89 awating to be reopened). Fortunately we have a fix approved and awaiting to be merged (https://github.com/exercism/purescript/pull/219). I'll see about getting it merged now.

emiel commented 2 years ago

@ErikSchierboom : This issue has been solved by #219 and may now be closed. Thanks!

ErikSchierboom commented 2 years ago

Thanks