You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-integration-zip/src/test/java/org/springframework/integration/zip/config/xml/ZipTransformerParserTests.java
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2015-2016 the original author or authors.
2
+
* Copyright 2015-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
5
5
* the License. You may obtain a copy of the License at
@@ -43,6 +43,8 @@
43
43
44
44
/**
45
45
* @author Gunnar Hillert
46
+
* @author Artem Bilan
47
+
*
46
48
* @since 1.0
47
49
*/
48
50
publicclassZipTransformerParserTests {
@@ -139,8 +141,8 @@ public void testZipTransformerParserWithIncorrectResultType() {
139
141
fail("Expected a BeanDefinitionParsingException to be thrown.");
140
142
}
141
143
catch (BeanCreationExceptione) {
142
-
assertThat(e.getMessage(), containsString("Failed to convert property value of type [java.lang.String] " +
143
-
"to required type [org.springframework.integration.zip.transformer.ZipResultType] "));
144
+
assertThat(e.getMessage(), containsString("Failed to convert property value of type 'java.lang.String' " +
145
+
"to required type 'org.springframework.integration.zip.transformer.ZipResultType'"));
0 commit comments