When a test in the classicist style fail (maybe because you refactored something), it tells you something is not working with your actual software but you do not see directly where the error is. You only have to fix the software, your test most probably still works. This is because you did not test implementation details but only the "what" should be done.
When a test in the mockist style fail, you see directly what part of the system is broken. But the rest of the day you are bussy fixing your test suite as the test are tightly coupled to the "how" something is done.