Closed danielb2 closed 3 years ago
To reproduce:
{ "plugins": [ { "$filter": "env", "local": "here" }, { "$filter": "env", "stage": "stage" } ] }
confidence -c test.json --filter.env=stage
Expected result:
{ "plugins": [ "stage" ] }
Actual result:
{ "plugins": [ null, "stage" ] }
Note that running confidence -c test.json --filter.env=local works as expected, producing:
confidence -c test.json --filter.env=local
{ "plugins": [ "here" ] }
with no null value for the second entry
Resolved by #113.
To reproduce:
confidence -c test.json --filter.env=stage
Expected result:
Actual result:
Note that running
confidence -c test.json --filter.env=local
works as expected, producing:with no null value for the second entry