-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix default value in env variables handled like variable name (#684)
- Loading branch information
Showing
5 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Handle default default of environment variable in RenameVariables (#677) | ||
------------------------------------------------------------------------ | ||
|
||
``RenameVariables`` did not handle default value of environment variable correctly. Now following code:: | ||
|
||
Set Test Variable ${local variable} %{env variable=string message} | ||
Log %{MY_ENV=${global}} | ||
Log %{my env=${global} with extra} | ||
|
||
should be transformed to:: | ||
|
||
Set Test Variable ${local_variable} %{ENV_VARIABLE=string message} | ||
Log %{MY_ENV=${GLOBAL}} | ||
Log %{MY_ENV=${DEFAULT} with extra string} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters