diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,9 @@
 # Changelog for Hedis
 
+## 0.11.1
+
+* PR #129. Fix tests
+
 ## 0.11.0
 
 * PR #126. Fixes for network 2.8 and 3.0
diff --git a/hedis.cabal b/hedis.cabal
--- a/hedis.cabal
+++ b/hedis.cabal
@@ -1,5 +1,5 @@
 name:               hedis
-version:            0.11.0
+version:            0.11.1
 synopsis:
     Client library for the Redis datastore: supports full command set,
     pipelining.
diff --git a/test/Test.hs b/test/Test.hs
--- a/test/Test.hs
+++ b/test/Test.hs
@@ -726,7 +726,7 @@
     xreadGroupOpts
       "somegroup"
       "consumer1"
-      [("somestream", "0")]
+      [("somestream", ">")]
       (defaultXreadOpts {recordCount = Just 2}) >>=?
       Just
         [ XReadResponse
@@ -755,7 +755,7 @@
     xadd "somestream" "121" [("key1", "value1")]
     xadd "somestream" "122" [("key2", "value2")]
     xgroupCreate "somestream" "somegroup" "0"
-    xreadGroupOpts "somegroup" "consumer1" [("somestream", "0")] (defaultXreadOpts { recordCount = Just 2})
+    xreadGroupOpts "somegroup" "consumer1" [("somestream", ">")] (defaultXreadOpts { recordCount = Just 2})
     consumerInfos <- xinfoConsumers "somestream" "somegroup"
     liftIO $ case consumerInfos of
         Left reply -> HUnit.assertFailure $ "Redis error: " ++ show reply
