File tree 1 file changed +4
-3
lines changed
spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 40
40
* Integration tests for DATAMONGO-1289.
41
41
*
42
42
* @author Christoph Strobl
43
+ * @author Mark Paluch
43
44
*/
44
45
@ RunWith (SpringJUnit4ClassRunner .class )
45
46
@ ContextConfiguration
@@ -69,7 +70,7 @@ public void setUp() {
69
70
}
70
71
71
72
@ Test // DATAMONGO-1289
72
- public void saveAndRetrieveTypeWithoutIdPorpertyViaTemplate () {
73
+ public void saveAndRetrieveTypeWithoutIdPropertyViaTemplate () {
73
74
74
75
TypeWithoutIdProperty noid = new TypeWithoutIdProperty ();
75
76
noid .someString = "o.O" ;
@@ -83,7 +84,7 @@ public void saveAndRetrieveTypeWithoutIdPorpertyViaTemplate() {
83
84
}
84
85
85
86
@ Test // DATAMONGO-1289
86
- public void saveAndRetrieveTypeWithoutIdPorpertyViaRepository () {
87
+ public void saveAndRetrieveTypeWithoutIdPropertyViaRepository () {
87
88
88
89
TypeWithoutIdProperty noid = new TypeWithoutIdProperty ();
89
90
noid .someString = "o.O" ;
@@ -96,7 +97,7 @@ public void saveAndRetrieveTypeWithoutIdPorpertyViaRepository() {
96
97
97
98
@ Test // DATAMONGO-1289
98
99
@ SuppressWarnings ("unchecked" )
99
- public void saveAndRetrieveTypeWithoutIdPorpertyViaRepositoryFindOne () {
100
+ public void saveAndRetrieveTypeWithoutIdPropertyViaRepositoryFindOne () {
100
101
101
102
TypeWithoutIdProperty noid = new TypeWithoutIdProperty ();
102
103
noid .someString = "o.O" ;
You can’t perform that action at this time.
0 commit comments