Fix typos in test code

This commit fixes typos in test class names, test method names, and
test variable names.

Closes gh-28807
This commit is contained in:
Marc Wrobel
2022-07-12 20:11:17 +02:00
committed by Sam Brannen
parent 2e4d7e4ef9
commit bd3499671c
19 changed files with 32 additions and 32 deletions

View File

@@ -139,13 +139,13 @@ public class SetValueTests extends AbstractExpressionTests {
}
@Test
public void testSetGenericListElementValueTypeCoersion() {
public void testSetGenericListElementValueTypeCoercion() {
// TODO currently failing since setValue does a getValue and "Wien" string != PlaceOfBirth - check with andy
setValue("placesLivedList[0]", "Wien");
}
@Test
public void testSetGenericListElementValueTypeCoersionOK() {
public void testSetGenericListElementValueTypeCoercionOK() {
setValue("booleanList[0]", "true", Boolean.TRUE);
}
@@ -171,12 +171,12 @@ public class SetValueTests extends AbstractExpressionTests {
}
@Test
public void testSetPropertyTypeCoersion() {
public void testSetPropertyTypeCoercion() {
setValue("publicBoolean", "true", Boolean.TRUE);
}
@Test
public void testSetPropertyTypeCoersionThroughSetter() {
public void testSetPropertyTypeCoercionThroughSetter() {
setValue("SomeProperty", "true", Boolean.TRUE);
}