Closed snr-lab closed 9 months ago
Run for first time input => { "x": "1", "Y": 2 } jsonpath => $.concat($.x,"-",$.y)
Run for second time input => { "x": "1", "Y": 5 } jsonpath => $.concat($.x,"-",$.y)
Expected output First time => 1-2 Second time => 1-5
Actual output First time => 1-2 Second time => 1-2
nice find! fixed in v0.4.29
Thank you @KittyMac
Run for first time input => { "x": "1", "Y": 2 } jsonpath => $.concat($.x,"-",$.y)
Run for second time input => { "x": "1", "Y": 5 } jsonpath => $.concat($.x,"-",$.y)
Expected output First time => 1-2 Second time => 1-5
Actual output First time => 1-2 Second time => 1-2