From 61d93bfcfc0b50feae02b7650353151410069274 Mon Sep 17 00:00:00 2001 From: Shawn Falkner-Horine Date: Wed, 10 Sep 2014 13:01:32 -0700 Subject: [PATCH] Tests: Tweaked a general test to be compatible with Boto 2.7, attribute check is redundant with a specific version-gated test. --- tests/test_autoscaling/test_launch_configurations.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_autoscaling/test_launch_configurations.py b/tests/test_autoscaling/test_launch_configurations.py index dc3e85ef..d2448028 100644 --- a/tests/test_autoscaling/test_launch_configurations.py +++ b/tests/test_autoscaling/test_launch_configurations.py @@ -168,7 +168,6 @@ def test_create_launch_configuration_defaults(): launch_config.instance_monitoring.enabled.should.equal('false') launch_config.instance_profile_name.should.equal(None) launch_config.spot_price.should.equal(None) - launch_config.ebs_optimized.should.equal(False) @requires_boto_gte("2.12")