-
-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
failing unit test #788
Comments
Try removing |
Yes, that works. I believe that - local fname = vim.fn.tempname() .. '.org'
+ local fname = vim.fn.resolve(vim.fn.tempname() .. '.org') Is everyone OK with me including that change in a PR that I hope to raise? |
I fixed this issue in this PR -- review appreciated |
@kristijanhusak, @snoblenet As the PR is merged, this issue can be closed, right? |
Describe the bug
I've forked the repo to make a contribution.
I've made no changes so far.
When I run the unit tests, it fails on line 48 in
tests/plenary/init_spec.lua
.It's because this line changes the filepath before adding it to the table.
So, trying to find the file in the table using the original filepath does not work.
Any suggestions?
Steps to reproduce
make test
Expected behavior
All tests pass.
Emacs functionality
No response
Minimal init.lua
-- Enter your minimal_init.lua here
Screenshots and recordings
No response
OS / Distro
Mac OS X 14.6
Neovim version/commit
v0.10.1
Additional context
No response
The text was updated successfully, but these errors were encountered: