vendor/datasketches-cpp/python/tests/hll_test.py in datasketches-0.2.1 vs vendor/datasketches-cpp/python/tests/hll_test.py in datasketches-0.2.2

- old
+ new

@@ -56,10 +56,10 @@ # serialize for storage and reconstruct sk_bytes = result.serialize_compact() self.assertEqual(len(sk_bytes), result.get_compact_serialization_bytes()) new_hll = hll_sketch.deserialize(sk_bytes) - # the sketch can self-report its configuation and status + # the sketch can self-report its configuration and status self.assertEqual(new_hll.lg_config_k, k) self.assertEqual(new_hll.tgt_type, tgt_hll_type.HLL_4) self.assertFalse(new_hll.is_empty()) # if we want to reduce some object overhead, we can also reset