Skip to content

Commit 8c2a39b

Browse files
committed
Simplify Javadoc
1 parent 02d0031 commit 8c2a39b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-test/src/main/java/org/springframework/test/context/TestPropertySource.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,13 @@
173173
* <strong>and</strong> {@code "extended.properties"} files as test property
174174
* source locations.
175175
* <pre class="code">
176-
* &#064;TestPropertySource(&quot;base.properties&quot;)
176+
* &#064;TestPropertySource("base.properties")
177177
* &#064;ContextConfiguration
178178
* public class BaseTest {
179179
* // ...
180180
* }
181181
*
182-
* &#064;TestPropertySource(&quot;extended.properties&quot;)
182+
* &#064;TestPropertySource("extended.properties")
183183
* &#064;ContextConfiguration
184184
* public class ExtendedTest extends BaseTest {
185185
* // ...
@@ -250,12 +250,12 @@
250250
* {@code ExtendedTest} will be loaded using the inlined {@code key1}
251251
* <strong>and</strong> {@code key2} properties.
252252
* <pre class="code">
253-
* &#064;TestPropertySource(properties = &quot;key1 = value1&quot;)
253+
* &#064;TestPropertySource(properties = "key1 = value1")
254254
* &#064;ContextConfiguration
255255
* public class BaseTest {
256256
* // ...
257257
* }
258-
* &#064;TestPropertySource(properties = &quot;key2 = value2&quot;)
258+
* &#064;TestPropertySource(properties = "key2 = value2")
259259
* &#064;ContextConfiguration
260260
* public class ExtendedTest extends BaseTest {
261261
* // ...

0 commit comments

Comments
 (0)