You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
testEnvironmentConfigSource() searches for a Config Property called "path". However, on Windows machines the environment variable "path" doesn't exist. The variable is called "Path".
This causes the Assert to fail.
The text was updated successfully, but these errors were encountered:
Hmm I'm not sure either. I was guessing that the Microsoft Windows Server 2019 server which the GithHub Actions uses may have a "path" or "PATH" environment variable, but I can't tell for sure...
@radcortez it depends on the Windows setting. Some Windows machine has PATH while others might have different variable name using different case. I think in the next release, we can improve the variable name mapping for env variable by ignoring the case as the fallback.
I took a further look at this. Since the test in particular is to test the environment added, I think we can remove the line that causes the test unable to function in some OS.
Describe the bug
microprofile-config/tck/src/main/java/org/eclipse/microprofile/config/tck/ConfigProviderTest.java
Lines 84 to 91 in 795080d
testEnvironmentConfigSource() searches for a Config Property called "path". However, on Windows machines the environment variable "path" doesn't exist. The variable is called "Path".
This causes the Assert to fail.
The text was updated successfully, but these errors were encountered: