Don Kuntz abf3db8d8a
Add a test to ensure that ec2.copy_image sets the proper owner id
This test is useful because before the last commit using copy_image
would not set the owner_id to the same one used when calling
describe_images.

For example, this code

    conn = boto3.client("ec2")
    copy_resp = conn.copy_image(
        SourceImageId="ami-whatever",
        ...
    )

    describe_resp = conn.describe_images(
        Owners=["self"]
    )

Would result in describe_resp being empty, when it should contain the
image from the copy_resp before it.

By ensuring the owner ids are the same (see ce4059f6) the code example
now works as expected.
2019-07-22 21:57:15 -05:00
..
2018-04-13 10:37:06 -04:00
2019-05-21 17:49:56 +01:00
2019-02-17 09:25:35 -06:00
2017-05-10 21:58:42 -04:00
2017-02-23 21:37:43 -05:00
2019-05-25 11:18:16 +01:00
2019-02-18 09:15:07 -06:00
2017-09-27 09:54:46 +01:00
2019-05-25 18:35:07 +01:00
2019-01-11 13:22:33 +01:00
2019-01-20 22:54:05 -08:00
2017-10-16 17:06:22 -07:00
2017-02-15 22:35:45 -05:00
2017-02-23 21:37:43 -05:00
2017-02-23 21:37:43 -05:00