diff options
author | James Falcon <therealfalcon@gmail.com> | 2021-07-02 18:01:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 17:01:58 -0600 |
commit | 36aeb49cb966d6ab576d4ce7cd2e815079c541a3 (patch) | |
tree | 531ee992a1731b33b89c8a8f09c567f47774f7fa /tests/integration_tests/clouds.py | |
parent | db51b656ee997382c3c4792271fa08398f43e105 (diff) | |
download | vyos-cloud-init-36aeb49cb966d6ab576d4ce7cd2e815079c541a3.tar.gz vyos-cloud-init-36aeb49cb966d6ab576d4ce7cd2e815079c541a3.zip |
testing: simplify test_upgrade.py (#932)
test_upgrade.py was outputting a ton of stuff that had to be manually
collected and verified. This commit adds more assertions to the test
and outputs directly to the logs rather than separate files.
Diffstat (limited to 'tests/integration_tests/clouds.py')
-rw-r--r-- | tests/integration_tests/clouds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration_tests/clouds.py b/tests/integration_tests/clouds.py index 4a0d3008..f2362b5d 100644 --- a/tests/integration_tests/clouds.py +++ b/tests/integration_tests/clouds.py @@ -157,7 +157,7 @@ class IntegrationCloud(ABC): self.instance = self.cloud_instance.get_instance( self.settings.EXISTING_INSTANCE_ID ) - return + return self.instance default_launch_kwargs = { 'image_id': self.image_id, 'user_data': user_data, |