Skip to content

Commit c15952b

Browse files
devxoulkzaher
authored andcommitted
UICollectionElementKindSectionHeader -> UICollectionView.elementKindSectionHeader
1 parent 6bc25ea commit c15952b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Tests/RxDataSourcesTests/RxCollectionViewSectionedDataSource+Test.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extension RxCollectionViewSectionedDataSourceTest {
3030

3131
let returnValue = dataSource.collectionView(
3232
collectionView,
33-
viewForSupplementaryElementOfKind: UICollectionElementKindSectionHeader,
33+
viewForSupplementaryElementOfKind: UICollectionView.elementKindSectionHeader,
3434
at: IndexPath(item: 0, section: 0)
3535
)
3636
XCTAssertEqual(returnValue, sentinel)
@@ -49,7 +49,7 @@ extension RxCollectionViewSectionedDataSourceTest {
4949

5050
let returnValue = dataSource.collectionView(
5151
collectionView,
52-
viewForSupplementaryElementOfKind: UICollectionElementKindSectionHeader,
52+
viewForSupplementaryElementOfKind: UICollectionView.elementKindSectionHeader,
5353
at: IndexPath(item: 0, section: 0)
5454
)
5555
XCTAssertEqual(returnValue, sentinel)
@@ -70,7 +70,7 @@ extension RxCollectionViewSectionedDataSourceTest {
7070

7171
let returnValue = dataSource.collectionView(
7272
collectionView,
73-
viewForSupplementaryElementOfKind: UICollectionElementKindSectionHeader,
73+
viewForSupplementaryElementOfKind: UICollectionView.elementKindSectionHeader,
7474
at: IndexPath(item: 0, section: 0)
7575
)
7676
XCTAssertEqual(returnValue, sentinel)
@@ -88,7 +88,7 @@ extension RxCollectionViewSectionedDataSourceTest {
8888

8989
let returnValue = dataSource.collectionView(
9090
collectionView,
91-
viewForSupplementaryElementOfKind: UICollectionElementKindSectionHeader,
91+
viewForSupplementaryElementOfKind: UICollectionView.elementKindSectionHeader,
9292
at: IndexPath(item: 0, section: 0)
9393
)
9494
XCTAssertEqual(returnValue, sentinel)
@@ -106,7 +106,7 @@ extension RxCollectionViewSectionedDataSourceTest {
106106

107107
let returnValue = dataSource.collectionView(
108108
collectionView,
109-
viewForSupplementaryElementOfKind: UICollectionElementKindSectionHeader,
109+
viewForSupplementaryElementOfKind: UICollectionView.elementKindSectionHeader,
110110
at: IndexPath(item: 0, section: 0)
111111
)
112112
XCTAssertEqual(returnValue, sentinel)

0 commit comments

Comments
 (0)