File tree 3 files changed +38
-3
lines changed
3 files changed +38
-3
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
spec . name = 'DifferenceKit'
3
- spec . version = '0.5.1 '
3
+ spec . version = '0.5.2 '
4
4
spec . author = { 'ra1028' => '[email protected] ' }
5
5
spec . homepage = 'https://github.com/ra1028/DifferenceKit'
6
6
spec . documentation_url = 'https://ra1028.github.io/DifferenceKit'
Original file line number Diff line number Diff line change @@ -599,8 +599,7 @@ private struct TableKey<T: Hashable>: Hashable {
599
599
600
600
static func == ( lhs: TableKey , rhs: TableKey ) -> Bool {
601
601
return lhs. hashValue == rhs. hashValue
602
- || lhs. pointer. distance ( to: rhs. pointer) == 0
603
- || lhs. pointer. pointee == rhs. pointer. pointee
602
+ && ( lhs. pointer. distance ( to: rhs. pointer) == 0 || lhs. pointer. pointee == rhs. pointer. pointee)
604
603
}
605
604
}
606
605
Original file line number Diff line number Diff line change @@ -235,6 +235,42 @@ extension AlgorithmTestCase {
235
235
]
236
236
)
237
237
}
238
+
239
+ func testSameHashValue( ) {
240
+ struct A : Hashable , Differentiable {
241
+ let hashValue = 0
242
+ let actualValue : Int
243
+
244
+ init ( _ actualValue: Int ) {
245
+ self . actualValue = actualValue
246
+ }
247
+
248
+ func isContentEqual( to source: A ) -> Bool {
249
+ return actualValue == source. actualValue
250
+ }
251
+ }
252
+
253
+ let section = 0
254
+
255
+ let source = [ A ( 0 ) , A ( 1 ) ]
256
+ let target = [ A ( 0 ) , A ( 2 ) ]
257
+
258
+ XCTAssertExactDifferences (
259
+ source: source,
260
+ target: target,
261
+ section: section,
262
+ expected: [
263
+ Changeset (
264
+ data: [ A ( 0 ) ] ,
265
+ elementDeleted: [ ElementPath ( element: 1 , section: section) ]
266
+ ) ,
267
+ Changeset (
268
+ data: target,
269
+ elementInserted: [ ElementPath ( element: 1 , section: section) ]
270
+ )
271
+ ]
272
+ )
273
+ }
238
274
}
239
275
240
276
/// Test algorithm for sectioned collection.
You can’t perform that action at this time.
0 commit comments