Skip to content

Commit

Permalink
Update snapshot tests
Browse files Browse the repository at this point in the history
Fix case sensitivity issue.
  • Loading branch information
modzelewski committed Sep 24, 2017
1 parent eca1317 commit 653a59a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TRXTests/specs/easing/EasingSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ class EasingSpec: QuickSpec {

override func spec() {

describe("Linear") {
describe("linear") {

it("has valid graph") {
expect(EasingTestView(easing: Ease.linear)).to(haveValidSnapshot())
}

}

describe("Quad") {
describe("quad") {

it("has valid in graph") {
expect(EasingTestView(easing: Ease.Quad.easeIn)).to(haveValidSnapshot())
Expand All @@ -32,7 +32,7 @@ class EasingSpec: QuickSpec {

}

describe("Cubic") {
describe("cubic") {

it("has valid in graph") {
expect(EasingTestView(easing: Ease.Cubic.easeIn)).to(haveValidSnapshot())
Expand All @@ -48,7 +48,7 @@ class EasingSpec: QuickSpec {

}

describe("Quart") {
describe("quart") {

it("has valid in graph") {
expect(EasingTestView(easing: Ease.Quart.easeIn)).to(haveValidSnapshot())
Expand Down

0 comments on commit 653a59a

Please sign in to comment.