Ad
  • Default User Avatar

    The test case comparison only works when the outcome of your function is a string. In your case it is a 'NonType' object. Since "NoneType" object doesn't have certain attributes (e.g.: it doesn't have 'replace' attribute), the evaluator fails to run the test case comparison.

    In a nutshell, please make sure your function returns a string

  • Default User Avatar

    I have the exact same issue