From 653a59a6dd25805fd431af8cdd50691f5f8adbaf Mon Sep 17 00:00:00 2001 From: Adam Modzelewski Date: Sun, 24 Sep 2017 15:07:41 +0200 Subject: [PATCH] Update snapshot tests Fix case sensitivity issue. --- TRXTests/specs/easing/EasingSpec.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TRXTests/specs/easing/EasingSpec.swift b/TRXTests/specs/easing/EasingSpec.swift index 3e1ed78..5bbc452 100644 --- a/TRXTests/specs/easing/EasingSpec.swift +++ b/TRXTests/specs/easing/EasingSpec.swift @@ -8,7 +8,7 @@ class EasingSpec: QuickSpec { override func spec() { - describe("Linear") { + describe("linear") { it("has valid graph") { expect(EasingTestView(easing: Ease.linear)).to(haveValidSnapshot()) @@ -16,7 +16,7 @@ class EasingSpec: QuickSpec { } - describe("Quad") { + describe("quad") { it("has valid in graph") { expect(EasingTestView(easing: Ease.Quad.easeIn)).to(haveValidSnapshot()) @@ -32,7 +32,7 @@ class EasingSpec: QuickSpec { } - describe("Cubic") { + describe("cubic") { it("has valid in graph") { expect(EasingTestView(easing: Ease.Cubic.easeIn)).to(haveValidSnapshot()) @@ -48,7 +48,7 @@ class EasingSpec: QuickSpec { } - describe("Quart") { + describe("quart") { it("has valid in graph") { expect(EasingTestView(easing: Ease.Quart.easeIn)).to(haveValidSnapshot())