Skip to content

Commit

Permalink
BVTCK-181 Fix 2 typos in test method names
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet authored and gunnarmorling committed Jul 11, 2017
1 parent 798130c commit 67ac63f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -77,7 +77,7 @@ public void constraint_provided_on_custom_bean_used_as_list_parameter_and_cascad
@SpecAssertion(section = Sections.CONSTRAINTDECLARATIONVALIDATIONPROCESS_CONTAINERELEMENTCONSTRAINTS, id = "a")
@SpecAssertion(section = Sections.CONSTRAINTDECLARATIONVALIDATIONPROCESS_CONTAINERELEMENTCONSTRAINTS, id = "b")
@SpecAssertion(section = Sections.CONSTRAINTDECLARATIONVALIDATIONPROCESS_CONTAINERELEMENTCONSTRAINTS, id = "c")
public void constraint_provided_on_custom_bean_used_as_map_parameter_valueand_cascading_gets_validated() {
public void constraint_provided_on_custom_bean_used_as_map_parameter_value_and_cascading_gets_validated() {
TypeWithMapValue m = new TypeWithMapValue();
m.barMap = new HashMap<>();
m.barMap.put( "bar", new Bar( 2 ) );
Expand Down Expand Up @@ -105,7 +105,7 @@ public void constraint_provided_on_custom_bean_used_as_map_parameter_valueand_ca
@SpecAssertion(section = Sections.CONSTRAINTDECLARATIONVALIDATIONPROCESS_CONTAINERELEMENTCONSTRAINTS, id = "a")
@SpecAssertion(section = Sections.CONSTRAINTDECLARATIONVALIDATIONPROCESS_CONTAINERELEMENTCONSTRAINTS, id = "b")
@SpecAssertion(section = Sections.CONSTRAINTDECLARATIONVALIDATIONPROCESS_CONTAINERELEMENTCONSTRAINTS, id = "c")
public void constraint_provided_on_custom_bean_used_as_map_parameter_keyand_cascading_gets_validated() {
public void constraint_provided_on_custom_bean_used_as_map_parameter_key_and_cascading_gets_validated() {
Bar bar = new Bar( 2 );
TypeWithMapKey m = new TypeWithMapKey();
m.barMap = new HashMap<>();
Expand Down

0 comments on commit 67ac63f

Please sign in to comment.