From cf4aabe514c6f77f757e083bf861b964341eb45e Mon Sep 17 00:00:00 2001 From: Manuel Kiessling Date: Wed, 18 Jan 2017 11:42:57 +0100 Subject: [PATCH] Temporarily deactivating TRUNCATE in spec in order to roll out. --- common/src/test/scala/CassandraClientSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/test/scala/CassandraClientSpec.scala b/common/src/test/scala/CassandraClientSpec.scala index aa560ce..62ccb85 100644 --- a/common/src/test/scala/CassandraClientSpec.scala +++ b/common/src/test/scala/CassandraClientSpec.scala @@ -22,7 +22,7 @@ class CassandraClientSpec extends FunSpec with Matchers { val resultSet = session.execute(selectStmt) val row = resultSet.one() row.getString("name") should be("foo") - session.execute("TRUNCATE things;") + //session.execute("TRUNCATE things;") } }