diff --git a/haskell-neo4j-client.cabal b/haskell-neo4j-client.cabal
--- a/haskell-neo4j-client.cabal
+++ b/haskell-neo4j-client.cabal
@@ -1,5 +1,5 @@
 name:                haskell-neo4j-client
-version:             0.3.0.13
+version:             0.3.0.14
 synopsis:            A Haskell neo4j client
 description:         
     Library to interact with Neo4j databases. 
@@ -13,7 +13,10 @@
        -Batch calls for CRUD operations.
     .
     .
-    All code has been tested with Neo4j versions 2.0.3,  2.1.5 and 2.1.7
+    All code has been tested with Neo4j versions 2.0.3,  2.1.5, 2.1.7 and 2.2.0
+
+    2.2.0 added authentication to the API this driver uses, this is not supported yet by this driver but will be soon
+    in the meantime you will have to disable it. (see http://neo4j.com/docs/stable/security-server.html#security-server-auth)
 homepage:            https://github.com/asilvestre/haskell-neo4j-rest-client
 license:             MIT
 license-file:        LICENSE
diff --git a/tests/IntegrationTests.hs b/tests/IntegrationTests.hs
--- a/tests/IntegrationTests.hs
+++ b/tests/IntegrationTests.hs
@@ -1482,8 +1482,9 @@
                                 M.fromList [("age", TC.newparam (78 :: Int64)),
                                             ("props", TC.ParamProperties $ M.fromList["age" |: (99 :: Int64)])]
         neo4jBool $ not $ TC.isSuccess res
-        neo4jEqual (Left ("Neo.ClientError.Statement.InvalidSyntax",
-                            "Invalid input 'i': expected <init> (line 1, column 1)\n\"i\"\n ^")) res
+        neo4jEqual (Left ("Neo.ClientError.Statement.InvalidSyntax", "")) (procRes res)
+    where procRes r@(Right _) = r
+          procRes r@(Left (err, _))= Left (err, "")
 
 -- | Test a cypher rollback transaction
 case_cypherTransactionRollback :: Assertion
