In the testtest_id_conversion_bug_v5 in the file test_operation_special_cases.py , when trying to call the subscription end point an error 404 is received. From the v0.3.17 /subscriptions/{sub_id} endpoint it seems like resp = scd_session.put('/subscriptions/{}'.format(sub_uuid), json=req) should give one of the prescribed error codes. But it does not.
In the test
test_id_conversion_bug_v5
in the filetest_operation_special_cases.py
, when trying to call the subscription end point an error404
is received. From the v0.3.17/subscriptions/{sub_id}
endpoint it seems likeresp = scd_session.put('/subscriptions/{}'.format(sub_uuid), json=req)
should give one of the prescribed error codes. But it does not.