Add files via upload

This commit is contained in:
soufiane-cheouati 2019-02-12 19:22:40 +00:00 committed by GitHub
parent 0da1ab969a
commit e1241e741f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -11,7 +11,6 @@ public class JsonSerializerUnitTest {
public void givenObjectNotSerializedThenExceptionThrown() throws JsonSerializationException {
Object object = new Object();
ObjectToJsonConverter serializer = new ObjectToJsonConverter();
serializer.convertToJson(object);
assertThrows(JsonSerializationException.class, () -> {
serializer.convertToJson(object);
});