Skip to content

Commit 71acd7a

Browse files
authored
Merge pull request #15 from ra1028/v0.5.2
V0.5.2
2 parents 42a7d4c + f4d92b5 commit 71acd7a

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

DifferenceKit.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'DifferenceKit'
3-
spec.version = '0.5.1'
3+
spec.version = '0.5.2'
44
spec.author = { 'ra1028' => '[email protected]' }
55
spec.homepage = 'https://github.com/ra1028/DifferenceKit'
66
spec.documentation_url = 'https://ra1028.github.io/DifferenceKit'

Sources/Algorithm.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,7 @@ private struct TableKey<T: Hashable>: Hashable {
599599

600600
static func == (lhs: TableKey, rhs: TableKey) -> Bool {
601601
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)
604603
}
605604
}
606605

Tests/AlgorithmTest.swift

+36
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,42 @@ extension AlgorithmTestCase {
235235
]
236236
)
237237
}
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+
}
238274
}
239275

240276
/// Test algorithm for sectioned collection.

0 commit comments

Comments
 (0)