[JAVA-11252] Fix Mongodb live test
This commit is contained in:
parent
af929125fc
commit
0c480dbeed
|
@ -38,7 +38,7 @@ public class BsonToJsonLiveTest {
|
|||
.setAuthor("author")
|
||||
.setCost(3.95)
|
||||
.setPublisher(new Publisher(new ObjectId("fffffffffffffffffffffffa"),"publisher"))
|
||||
.setPublishDate(LocalDateTime.parse("2020-01-01T18:13:32Z", DateTimeFormatter.ISO_DATE_TIME))
|
||||
.setPublishDate(LocalDateTime.parse("2020-01-01T17:13:32Z", DateTimeFormatter.ISO_DATE_TIME))
|
||||
.addCompanionBooks(new Book().setIsbn("isbn2")));
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,7 @@ public class BsonToJsonLiveTest {
|
|||
@Test
|
||||
public void givenBsonDocument_whenUsingStandardJsonTransformation_thenJsonDateIsObjectEpochTime() {
|
||||
|
||||
String json = null;
|
||||
String json;
|
||||
try (MongoClient mongoClient = new MongoClient()) {
|
||||
MongoDatabase mongoDatabase = mongoClient.getDatabase(DB_NAME);
|
||||
Document bson = mongoDatabase.getCollection("Books").find().first();
|
||||
|
@ -75,7 +75,7 @@ public class BsonToJsonLiveTest {
|
|||
@Test
|
||||
public void givenBsonDocument_whenUsingRelaxedJsonTransformation_thenJsonDateIsObjectIsoDate() {
|
||||
|
||||
String json = null;
|
||||
String json;
|
||||
try (MongoClient mongoClient = new MongoClient()) {
|
||||
MongoDatabase mongoDatabase = mongoClient.getDatabase(DB_NAME);
|
||||
Document bson = mongoDatabase.getCollection("Books").find().first();
|
||||
|
@ -102,7 +102,7 @@ public class BsonToJsonLiveTest {
|
|||
@Test
|
||||
public void givenBsonDocument_whenUsingCustomJsonTransformation_thenJsonDateIsStringField() {
|
||||
|
||||
String json = null;
|
||||
String json;
|
||||
try (MongoClient mongoClient = new MongoClient()) {
|
||||
MongoDatabase mongoDatabase = mongoClient.getDatabase(DB_NAME);
|
||||
Document bson = mongoDatabase.getCollection("Books").find().first();
|
||||
|
|
Loading…
Reference in New Issue