Skip to content

Commit

Permalink
Update spec descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
vadymmarkov committed Nov 25, 2015
1 parent 2c05caa commit 4f077f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pod/Tests/Specs/Generators/InternetSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class InternetSpec: QuickSpec {
expect(url).to(equal("http://lorempixel.com/320/200"))
}

it("returns the correct Image URL with specified size") {
it("returns the correct Image URL with a specified size") {
let url = internet.image(width: 200, height: 150)
expect(url).to(equal("http://lorempixel.com/200/150"))
}
Expand All @@ -151,7 +151,7 @@ class InternetSpec: QuickSpec {
expect(url).to(equal("http://dummyimage.com/320x200/000000/ffffff"))
}

it("returns the correct Image URL with specified size") {
it("returns the correct Image URL with a specified size") {
let url = internet.templateImage(width: 200, height: 150,
backColorHex: "2e4bc2", frontColorHex: "ccdb28")
expect(url).to(equal("http://dummyimage.com/200x150/2e4bc2/ccdb28"))
Expand Down

0 comments on commit 4f077f6

Please sign in to comment.