diff --git a/api/test/IntegrationSpec.scala b/api/test/IntegrationSpec.scala index 2fe01ed..0f18ad9 100644 --- a/api/test/IntegrationSpec.scala +++ b/api/test/IntegrationSpec.scala @@ -22,7 +22,7 @@ class IntegrationSpec extends PlaySpec with OneBrowserPerSuite with OneServerPer val uri = CassandraConnectionUri(uriString) val session = CassandraClient.createSessionAndInitKeyspace(uri) - //session.execute("TRUNCATE statistics;") + session.execute("TRUNCATE statistics;") session.execute( s""" diff --git a/common/src/test/scala/CassandraClientSpec.scala b/common/src/test/scala/CassandraClientSpec.scala index 62ccb85..aa560ce 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;") } } diff --git a/importer/src/test/scala/ImporterSpec.scala b/importer/src/test/scala/ImporterSpec.scala index c5f3402..c959822 100644 --- a/importer/src/test/scala/ImporterSpec.scala +++ b/importer/src/test/scala/ImporterSpec.scala @@ -15,7 +15,7 @@ class ImporterSpec extends FunSpec with Matchers { val uri = CassandraConnectionUri(uriString) val firstSession = CassandraClient.createSessionAndInitKeyspace(uri) - //firstSession.execute("TRUNCATE testresults;") + firstSession.execute("TRUNCATE testresults;") Importer.run("./testresults.json", firstSession)