Corrected new test

This commit is contained in:
David Murphy 2025-03-05 13:35:33 -07:00 committed by Daniel Wozniak
parent fa295250af
commit e355b483fe

View file

@ -569,7 +569,17 @@ def test_client_cache_missing_key(file_client, react_wrap):
tag = f"new_{file_client}"
chunk = LOW_CHUNKS[tag][0]
with patch.object(react_wrap, "client_cache", client_cache):
react_wrap.runner(chunk)
if f"{file_client}" == "runner":
react_wrap.runner(chunk)
elif f"{file_client}" == "wheel":
react_wrap.runner(chunk)
elif f"{file_client}" == "local":
react_wrap.local(chunk)
elif f"{file_client}" == "caller":
react_wrap.caller(chunk)
else:
assert f"{file_client}" == "bad parameterization"
file_client_key = None
for key in react_wrap.client_cache.keys():
if key == f"{file_client}":