Skip to content

Commit

Permalink
[Test Proxy] Fix parameter reference in stop_record_or_playback (#25725)
Browse files Browse the repository at this point in the history
  • Loading branch information
mccoyp authored Aug 16, 2022
1 parent ea7ed3e commit 7c835fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def stop_record_or_playback(test_id: str, recording_id: str, test_variables: "Di
"x-recording-save": "true",
"Content-Type": "application/json",
},
json=test_output or {}, # tests don't record successfully unless test_output is a dictionary
json=test_variables or {}, # tests don't record successfully unless test_variables is a dictionary
)
else:
response = requests.post(
Expand Down

0 comments on commit 7c835fb

Please sign in to comment.