Skip to content

Commit

Permalink
Fix testsuite; v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caiiiycuk committed Jun 5, 2024
1 parent cc70b9a commit c8a6fca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object Build extends Build {
lazy val project = Project("root", file("."), settings = Seq(
name := "postgresql-to-sqlite",
organization := "com.github.caiiiycuk",
version := "1.1.0",
version := "1.1.1",
scalaVersion := "2.11.12",

libraryDependencies ++= Seq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class DumperTest extends FlatSpec with Matchers with BeforeAndAfter {
connection.withStatement { statment =>
val rs = statment.executeQuery("SELECT * FROM test")
rs.next() should equal(true)
rs.getString(1) should equal("1714983252000")
rs.getLong(1) > 0 should equal(true)
rs.close()
}
connection.close
Expand Down Expand Up @@ -122,7 +122,7 @@ class DumperTest extends FlatSpec with Matchers with BeforeAndAfter {
connection.withStatement { statment =>
val rs = statment.executeQuery("SELECT * FROM test")
rs.next() should equal(true)
rs.getString(1) should equal("2460436.84319444")
rs.getDouble(1) > 0 should equal(true)
rs.close()
}
connection.close
Expand Down

0 comments on commit c8a6fca

Please sign in to comment.