File tree 2 files changed +3
-3
lines changed
src/test/scala/com/github/caiiiycuk/pg2sqlite/dsl
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ object Build extends Build {
7
7
lazy val project = Project (" root" , file(" ." ), settings = Seq (
8
8
name := " postgresql-to-sqlite" ,
9
9
organization := " com.github.caiiiycuk" ,
10
- version := " 1.1.0 " ,
10
+ version := " 1.1.1 " ,
11
11
scalaVersion := " 2.11.12" ,
12
12
13
13
libraryDependencies ++= Seq (
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class DumperTest extends FlatSpec with Matchers with BeforeAndAfter {
82
82
connection.withStatement { statment =>
83
83
val rs = statment.executeQuery(" SELECT * FROM test" )
84
84
rs.next() should equal(true )
85
- rs.getString (1 ) should equal(" 1714983252000 " )
85
+ rs.getLong (1 ) > 0 should equal(true )
86
86
rs.close()
87
87
}
88
88
connection.close
@@ -122,7 +122,7 @@ class DumperTest extends FlatSpec with Matchers with BeforeAndAfter {
122
122
connection.withStatement { statment =>
123
123
val rs = statment.executeQuery(" SELECT * FROM test" )
124
124
rs.next() should equal(true )
125
- rs.getString (1 ) should equal(" 2460436.84319444 " )
125
+ rs.getDouble (1 ) > 0 should equal(true )
126
126
rs.close()
127
127
}
128
128
connection.close
You can’t perform that action at this time.
0 commit comments