DATAMONGO-1707 - Polishing.

Fix typo in test method names.
This commit is contained in:
Mark Paluch
2017-06-01 10:05:32 +02:00
parent 73fbaaf3bd
commit 117ab7c033

View File

@@ -40,6 +40,7 @@ import com.mongodb.MongoClient;
* Integration tests for DATAMONGO-1289.
*
* @author Christoph Strobl
* @author Mark Paluch
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
@@ -69,7 +70,7 @@ public class NoExplicitIdTests {
}
@Test // DATAMONGO-1289
public void saveAndRetrieveTypeWithoutIdPorpertyViaTemplate() {
public void saveAndRetrieveTypeWithoutIdPropertyViaTemplate() {
TypeWithoutIdProperty noid = new TypeWithoutIdProperty();
noid.someString = "o.O";
@@ -83,7 +84,7 @@ public class NoExplicitIdTests {
}
@Test // DATAMONGO-1289
public void saveAndRetrieveTypeWithoutIdPorpertyViaRepository() {
public void saveAndRetrieveTypeWithoutIdPropertyViaRepository() {
TypeWithoutIdProperty noid = new TypeWithoutIdProperty();
noid.someString = "o.O";
@@ -96,7 +97,7 @@ public class NoExplicitIdTests {
@Test // DATAMONGO-1289
@SuppressWarnings("unchecked")
public void saveAndRetrieveTypeWithoutIdPorpertyViaRepositoryFindOne() {
public void saveAndRetrieveTypeWithoutIdPropertyViaRepositoryFindOne() {
TypeWithoutIdProperty noid = new TypeWithoutIdProperty();
noid.someString = "o.O";