File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -9844,7 +9844,7 @@ Maps become Objects. Arbitrary keys are encoded to by key->js."
9844
9844
IHash
9845
9845
(-hash [this]
9846
9846
(when (nil? __hash)
9847
- (set! __hash (hash-string* uuid)))
9847
+ (set! __hash (hash uuid)))
9848
9848
__hash)
9849
9849
9850
9850
IComparable
Original file line number Diff line number Diff line change 1690
1690
(testing " UUID hashing"
1691
1691
(let [id " 550e8400-e29b-41d4-a716-446655440000"
1692
1692
uuid (cljs.core/uuid id)
1693
- expected (goog.string/hashCode id)]
1693
+ expected (hash id)]
1694
1694
(is (= expected (hash uuid)))
1695
- ; ; checking hash cache
1696
- (is (= expected (.-__hash uuid)))
1697
- (is (= expected (hash uuid))))))
1695
+ (is (= expected (.-__hash uuid))))))
1698
1696
1699
1697
(deftest test-comparable
1700
1698
(testing " Testing IComparable"
You can’t perform that action at this time.
0 commit comments