On Thu, Mar 30, 2017 at 6:50 AM, Nicolas Goaziou wrote: > Thank you. Unfortunately, there is not much to do with this. Could you > do some debugging when running the faulty test? It may come from > something in your configuration. I think I figured it out. During the fuzzy-links test, org-open-at-point is invoked to open a file that was created with org-test-with-temp-text-in-file. The temp file does not have a .org extension. As a result, my mac attempts to open the file outside of emacs, which produces an unexpected result. The solution is to pass an argument to org-open-at-point, which ensures that the file is opened in emacs. A patch is attached.