Use Python 2 format

This commit is contained in:
mickeypash 2020-04-03 14:17:55 +01:00
parent d3367b8a90
commit a6864f483d

View File

@ -77,7 +77,7 @@ def test_delete_attached_volume():
ex.exception.error_code.should.equal("VolumeInUse")
ex.exception.status.should.equal(400)
ex.exception.message.should.equal(
f"Volume {volume.id} is currently attached to {instance.id}"
"Volume {0} is currently attached to {1}".format(volume.id, instance.id)
)
volume.detach()