Skip to content

Commit

Permalink
qualify c.c.io in gzip_test.clj
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejs committed Sep 18, 2010
1 parent 3b26cb4 commit db7e799
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ring/middleware/gzip_test.clj
@@ -1,14 +1,14 @@
(ns ring.middleware.gzip-test
(:use clojure.test
clojure.contrib.io
ring.middleware.gzip)
(:require [clojure.contrib.io :as io])
(:import (java.util Arrays))
(:import (java.io StringBufferInputStream ByteArrayOutputStream))
(:import (java.util.zip GZIPInputStream)))

(defn unzip [in]
(let [in (GZIPInputStream. in)
bytes (to-byte-array in)]
bytes (io/to-byte-array in)]
(.close in)
bytes))

Expand Down

0 comments on commit db7e799

Please sign in to comment.