From aa78ad6a0b5d603a508823f8960c9eb4ee6adaba Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Thu, 31 Oct 2013 13:16:26 +0700 Subject: [PATCH] Rename test type: `:coll`->`:lazy-seq` --- README.md | 2 +- src/taoensso/nippy.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a9591c2..c6e7348 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ nippy/stress-data :set #{1 2 3 4 5 #{6 7 8 #{9 10}}} :set-empty #{} :meta (with-meta {:a :A} {:metakey :metaval}) - :coll (repeatedly 1000 rand) + :lazy-seq (repeatedly 1000 rand) :byte (byte 16) :short (short 42) diff --git a/src/taoensso/nippy.clj b/src/taoensso/nippy.clj index 32d3f08..b0df273 100644 --- a/src/taoensso/nippy.clj +++ b/src/taoensso/nippy.clj @@ -469,7 +469,7 @@ :set-empty #{} :meta (with-meta {:a :A} {:metakey :metaval}) - :coll (repeatedly 1000 rand) + :lazy-seq (repeatedly 1000 rand) :byte (byte 16) :short (short 42)