We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f90e02 commit 8b89a9cCopy full SHA for 8b89a9c
integration/test_instance_id.py
@@ -20,5 +20,6 @@
20
21
def test_delete_non_existing():
22
with pytest.raises(instance_id.ApiCallError) as excinfo:
23
- instance_id.delete_instance_id('non-existing')
24
- assert str(excinfo.value) == 'Instance ID "non-existing": Failed to find the instance ID.'
+ # legal instance IDs are /[cdef][A-Za-z0-9_-]{9}[AEIMQUYcgkosw048]/
+ instance_id.delete_instance_id('fictive-ID0')
25
+ assert str(excinfo.value) == 'Instance ID "fictive-ID0": Failed to find the instance ID.'
0 commit comments