Upgrade to Gradle 4.0 and SI-4.3.10

This commit is contained in:
Artem Bilan
2017-06-21 15:47:16 -04:00
parent cfc8184993
commit 6f1b2babf6
6 changed files with 38 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
@@ -43,6 +43,8 @@ import org.springframework.util.Assert;
/**
* @author Gunnar Hillert
* @author Artem Bilan
*
* @since 1.0
*/
public class ZipTransformerParserTests {
@@ -139,8 +141,8 @@ public class ZipTransformerParserTests {
fail("Expected a BeanDefinitionParsingException to be thrown.");
}
catch (BeanCreationException e) {
assertThat(e.getMessage(), containsString("Failed to convert property value of type [java.lang.String] " +
"to required type [org.springframework.integration.zip.transformer.ZipResultType] "));
assertThat(e.getMessage(), containsString("Failed to convert property value of type 'java.lang.String' " +
"to required type 'org.springframework.integration.zip.transformer.ZipResultType'"));
}
}