fix: correct test references to use selection ID 1475 for exemption
This commit is contained in:
@@ -120,7 +120,7 @@ class ParticipantValidatorTest extends ConstraintValidatorTestCase
|
||||
->assertRaised();
|
||||
}
|
||||
|
||||
public function testParticipantWithOutOfRangeBodyDimensionsFailsValidationWithoutSelection1474(): void
|
||||
public function testParticipantWithOutOfRangeBodyDimensionsFailsValidationWithoutSelection1475(): void
|
||||
{
|
||||
$wrapper = $this->createWrapperWithParticipantAndTravelSelections(
|
||||
$this->createValidParticipantWithOutOfRangeBodyDimensions(),
|
||||
@@ -133,11 +133,11 @@ class ParticipantValidatorTest extends ConstraintValidatorTestCase
|
||||
$this->assertCount(3, $this->context->getViolations());
|
||||
}
|
||||
|
||||
public function testParticipantWithOutOfRangeBodyDimensionsPassesValidationInCreateModeWithSelection1474(): void
|
||||
public function testParticipantWithOutOfRangeBodyDimensionsPassesValidationInCreateModeWithSelection1475(): void
|
||||
{
|
||||
$wrapper = $this->createWrapperWithParticipantAndTravelSelections(
|
||||
$this->createValidParticipantWithOutOfRangeBodyDimensions(),
|
||||
[1474]
|
||||
[1475]
|
||||
);
|
||||
|
||||
$this->setRoot($wrapper);
|
||||
@@ -146,11 +146,11 @@ class ParticipantValidatorTest extends ConstraintValidatorTestCase
|
||||
$this->assertNoViolation();
|
||||
}
|
||||
|
||||
public function testParticipantWithOutOfRangeBodyDimensionsPassesValidationInEditModeWithSelection1474(): void
|
||||
public function testParticipantWithOutOfRangeBodyDimensionsPassesValidationInEditModeWithSelection1475(): void
|
||||
{
|
||||
$wrapper = $this->createWrapperWithParticipantAndTravelSelections(
|
||||
$this->createValidParticipantWithOutOfRangeBodyDimensions(),
|
||||
[1474],
|
||||
[1475],
|
||||
true
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user