Skip to content

Commit 5f78628

Browse files
committed
update tests
1 parent cdcd8b9 commit 5f78628

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ self.parallaxTransition = parallaxTransition // You must retain the parallax tra
6161

6262
### Configuration
6363

64-
You can customize the component by enabling few options:
64+
You can customize the component with few options:
6565

6666
```swift
6767
let viewController = UIViewController()

Sources/DGParallaxInteractiveTransition.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef _DGFRAMEWORKTEMPLATE_H
2-
#define _DGFRAMEWORKTEMPLATE_H
1+
#ifndef _DGPARALLAXINTERACTIVETRANSITION_H
2+
#define _DGPARALLAXINTERACTIVETRANSITION_H
33

44
#import <Foundation/Foundation.h>
55

Sources/DGParallaxInteractiveTransition.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class DGParallaxInteractiveTransition: UIPercentDrivenInteractiveTransition, UIG
1818
}
1919

2020
private lazy var panGestureRecognizer: UIPanGestureRecognizer = {
21-
let panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(handle(gestureRecognizer:)))
21+
let panGestureRecognizer = UIPanGestureRecognizer(target: self, action: #selector(handle(gestureRecognizer:)))
2222
panGestureRecognizer.delegate = self
2323
#if os(iOS)
2424
panGestureRecognizer.maximumNumberOfTouches = 1

Tests/DGParallaxInteractiveTransitionTests/DGParallaxInteractiveTransitionTests.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,4 @@ class DGParallaxInteractiveTransitionTests: XCTestCase {
1010
override func tearDown() {
1111
super.tearDown()
1212
}
13-
14-
func testDescription() {
15-
let t = TemplateClass()
16-
XCTAssertEqual(t.description, "TemplateDescription")
17-
}
1813
}

0 commit comments

Comments
 (0)