Skip to content

Commit 7c835fb

Browse files
authored
[Test Proxy] Fix parameter reference in stop_record_or_playback (Azure#25725)
1 parent ea7ed3e commit 7c835fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def stop_record_or_playback(test_id: str, recording_id: str, test_variables: "Di
9090
"x-recording-save": "true",
9191
"Content-Type": "application/json",
9292
},
93-
json=test_output or {}, # tests don't record successfully unless test_output is a dictionary
93+
json=test_variables or {}, # tests don't record successfully unless test_variables is a dictionary
9494
)
9595
else:
9696
response = requests.post(

0 commit comments

Comments
 (0)