Skip to content

Commit

Permalink
Fix typo in test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Feb 8, 2019
1 parent 1f90e95 commit d6d762a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkg/cfn/builder/api_test.go
Expand Up @@ -403,7 +403,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(templateBody).ShouldNot(BeEmpty())
})
obj := Template{}
It("should parse JSON withon errors", func() {
It("should parse JSON without errors", func() {
err := json.Unmarshal(templateBody, &obj)
Expect(err).ShouldNot(HaveOccurred())
})
Expand Down Expand Up @@ -438,7 +438,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors", func() {
It("should parse JSON without errors", func() {
err := json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
})
Expand Down Expand Up @@ -471,7 +471,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors", func() {
It("should parse JSON without errors", func() {
err := json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
})
Expand Down Expand Up @@ -544,7 +544,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors", func() {
It("should parse JSON without errors", func() {
err := json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
})
Expand Down Expand Up @@ -602,7 +602,7 @@ var _ = Describe("CloudFormation template builder API", func() {
})

obj := Template{}
It("should parse JSON withon errors", func() {
It("should parse JSON without errors", func() {
err := json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
})
Expand Down Expand Up @@ -697,7 +697,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors", func() {
It("should parse JSON without errors", func() {
err := json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
})
Expand Down Expand Up @@ -778,7 +778,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors and extract valid cloud-config using our implementation", func() {
It("should parse JSON without errors and extract valid cloud-config using our implementation", func() {
err = json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
Expect(len(obj.Resources)).ToNot(Equal(0))
Expand Down Expand Up @@ -846,7 +846,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors and extract valid cloud-config using our implementation", func() {
It("should parse JSON without errors and extract valid cloud-config using our implementation", func() {
err = json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
Expect(len(obj.Resources)).ToNot(Equal(0))
Expand Down Expand Up @@ -918,7 +918,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors and extract valid cloud-config using our implementation", func() {
It("should parse JSON without errors and extract valid cloud-config using our implementation", func() {
err = json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
Expect(len(obj.Resources)).ToNot(Equal(0))
Expand Down Expand Up @@ -990,7 +990,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Expect(err).ShouldNot(HaveOccurred())
})
obj := Template{}
It("should parse JSON withon errors and extract valid cloud-config using our implementation", func() {
It("should parse JSON without errors and extract valid cloud-config using our implementation", func() {
err = json.Unmarshal(template, &obj)
Expect(err).ShouldNot(HaveOccurred())
Expect(len(obj.Resources)).ToNot(Equal(0))
Expand Down

0 comments on commit d6d762a

Please sign in to comment.