Skip to content

Commit

Permalink
Sarthak: Changed version to 0.9.2 to be released
Browse files Browse the repository at this point in the history
  • Loading branch information
msarthak32 committed Mar 3, 2018
1 parent d45b575 commit 26e4cb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.dataanon</groupId>
<artifactId>data-anon</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>0.9.2</version>
<packaging>jar</packaging>

<name>data-anon</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import com.github.dataanon.model.DbConfig
import com.github.dataanon.strategy.string.FixedString
import com.github.dataanon.support.MoviesTable
import com.github.dataanon.support.MoviesTableHavingGenreSize10
import com.github.dataanon.support.RatingsTable
import com.github.dataanon.utils.DataAnonTestLogHandler
import io.kotlintest.matchers.*
import io.kotlintest.specs.FunSpec
Expand Down Expand Up @@ -165,7 +164,7 @@ class SpecialFeaturesIntegrationTest : FunSpec() {
.insert(6, "Movie 6", "Action", Date(2005, 5, 2))

val destDbConfig = DbConfig("jdbc:h2:mem:movies_dest", "", "")
val destTable = MoviesTableHavingGenreSize10(destDbConfig)
val destTable = MoviesTableHavingGenreSize10(destDbConfig)

Whitelist(sourceDbConfig, destDbConfig)
.table("MOVIES") {
Expand All @@ -190,7 +189,5 @@ class SpecialFeaturesIntegrationTest : FunSpec() {
destTable.close()
sourceTable.close()
}


}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import java.util.logging.Handler
import java.util.logging.LogRecord

class DataAnonTestLogHandler: Handler() {

companion object {
val records = mutableListOf<LogRecord>()
}
Expand All @@ -17,6 +18,4 @@ class DataAnonTestLogHandler: Handler() {

override fun close() {
}


}

0 comments on commit 26e4cb8

Please sign in to comment.