Skip to content

Commit

Permalink
Merge pull request #75 from duftler/tweak-formatting
Browse files Browse the repository at this point in the history
Adjust indentation.
  • Loading branch information
Matt Duftler committed Feb 29, 2016
2 parents 1b8aec6 + 2658158 commit d8a6d64
Showing 1 changed file with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -649,11 +649,11 @@ class AWSBakeHandlerSpec extends Specification {
void 'produce a default AWS bakeKey with enhanced network enabled'() {
setup:
def bakeRequest = new BakeRequest(user: "[email protected]",
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
enhanced_networking: true)
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
enhanced_networking: true)

@Subject
AWSBakeHandler awsBakeHandler = new AWSBakeHandler(awsBakeryDefaults: awsBakeryDefaults)
Expand All @@ -668,11 +668,11 @@ class AWSBakeHandlerSpec extends Specification {
void 'produce a default AWS bakeKey with ami name'() {
setup:
def bakeRequest = new BakeRequest(user: "[email protected]",
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
ami_name: "kato-app")
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
ami_name: "kato-app")
@Subject
AWSBakeHandler awsBakeHandler = new AWSBakeHandler(awsBakeryDefaults: awsBakeryDefaults)

Expand All @@ -686,11 +686,11 @@ class AWSBakeHandlerSpec extends Specification {
void 'produce a default AWS bakeKey with ami suffix'() {
setup:
def bakeRequest = new BakeRequest(user: "[email protected]",
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
ami_suffix: "1.0")
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
ami_suffix: "1.0")
@Subject
AWSBakeHandler awsBakeHandler = new AWSBakeHandler(awsBakeryDefaults: awsBakeryDefaults)

Expand All @@ -704,12 +704,12 @@ class AWSBakeHandlerSpec extends Specification {
void 'produce a default AWS bakeKey with ami name and suffix'() {
setup:
def bakeRequest = new BakeRequest(user: "[email protected]",
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
ami_name: "kato-app",
ami_suffix: "1.0")
package_name: PACKAGE_NAME,
base_os: "centos",
vm_type: BakeRequest.VmType.hvm,
cloud_provider_type: BakeRequest.CloudProviderType.aws,
ami_name: "kato-app",
ami_suffix: "1.0")
@Subject
AWSBakeHandler awsBakeHandler = new AWSBakeHandler(awsBakeryDefaults: awsBakeryDefaults)

Expand Down

0 comments on commit d8a6d64

Please sign in to comment.