File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/scala/com/sfxcode/nosql/mongo/converter Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ class BsonConverterSpec extends Specification {
2222 BsonConverter .toBson(false ) must be equalTo BsonBoolean (false )
2323 BsonConverter .toBson(true ) must be equalTo BsonBoolean (true )
2424
25- BsonConverter .toBson(java.math.BigDecimal .TEN ) must be equalTo BsonDouble (10 )
26- BsonConverter .toBson(BigDecimal (10 )) must be equalTo BsonDouble (10 )
25+ BsonConverter .toBson(java.math.BigDecimal .TEN ) must be equalTo BsonDecimal128 .apply (10 )
26+ BsonConverter .toBson(BigDecimal (10 )) must be equalTo BsonDecimal128 .apply (10 )
2727 BsonConverter .toBson(BigInt (10 )) must be equalTo BsonInt64 (10 )
2828 BsonConverter .toBson(java.math.BigInteger .TEN ) must be equalTo BsonInt64 (10 )
2929
You can’t perform that action at this time.
0 commit comments