-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
fix: fix go test
errors
#2169
fix: fix go test
errors
#2169
Conversation
@@ -38,7 +38,7 @@ type Project struct { | |||
/*** Internal Data ***/ | |||
|
|||
// The path to the project directory | |||
Path string | |||
Path string `json:"projectdir"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@leaanthony The modification here is so that the test case can run normally, but I don't know if it will affect other code operations.
I've pushed a couple of changes to see if it would fix the linker errors and it does appear to be fixed. Thoughts? |
I think it's ok to merge. |
Good job!! |
Most errors are caused by missing
//go:build windows
build tags.Fatal errors during testing have been fixed, but there are still some use cases that don't pass the test.