Skip to content

Commit 117ab7c

Browse files
committed
DATAMONGO-1707 - Polishing.
Fix typo in test method names.
1 parent 73fbaaf commit 117ab7c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/NoExplicitIdTests.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
* Integration tests for DATAMONGO-1289.
4141
*
4242
* @author Christoph Strobl
43+
* @author Mark Paluch
4344
*/
4445
@RunWith(SpringJUnit4ClassRunner.class)
4546
@ContextConfiguration
@@ -69,7 +70,7 @@ public void setUp() {
6970
}
7071

7172
@Test // DATAMONGO-1289
72-
public void saveAndRetrieveTypeWithoutIdPorpertyViaTemplate() {
73+
public void saveAndRetrieveTypeWithoutIdPropertyViaTemplate() {
7374

7475
TypeWithoutIdProperty noid = new TypeWithoutIdProperty();
7576
noid.someString = "o.O";
@@ -83,7 +84,7 @@ public void saveAndRetrieveTypeWithoutIdPorpertyViaTemplate() {
8384
}
8485

8586
@Test // DATAMONGO-1289
86-
public void saveAndRetrieveTypeWithoutIdPorpertyViaRepository() {
87+
public void saveAndRetrieveTypeWithoutIdPropertyViaRepository() {
8788

8889
TypeWithoutIdProperty noid = new TypeWithoutIdProperty();
8990
noid.someString = "o.O";
@@ -96,7 +97,7 @@ public void saveAndRetrieveTypeWithoutIdPorpertyViaRepository() {
9697

9798
@Test // DATAMONGO-1289
9899
@SuppressWarnings("unchecked")
99-
public void saveAndRetrieveTypeWithoutIdPorpertyViaRepositoryFindOne() {
100+
public void saveAndRetrieveTypeWithoutIdPropertyViaRepositoryFindOne() {
100101

101102
TypeWithoutIdProperty noid = new TypeWithoutIdProperty();
102103
noid.someString = "o.O";

0 commit comments

Comments
 (0)