Skip to content

Commit

Permalink
Temporarily deactivating TRUNCATE in specs in order to roll out.
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkiessling committed Jan 18, 2017
1 parent cf4aabe commit 06840e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/test/IntegrationSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
2 changes: 1 addition & 1 deletion importer/src/test/scala/ImporterSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 06840e8

Please sign in to comment.