Skip to content

Commit 527d155

Browse files
committed
Fix file names
1 parent a6b1a07 commit 527d155

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/ComposedValue/ComposedAllOfTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ComposedAllOfTest extends AbstractPHPModelGeneratorTest
2020
*/
2121
public function testEmptyAllOfIsValid($propertyValue): void
2222
{
23-
$className = $this->generateClassFromFile('emptyAllOf.json');
23+
$className = $this->generateClassFromFile('EmptyAllOf.json');
2424

2525
$object = new $className(['property' => $propertyValue]);
2626
$this->assertNull($object->getProperty());

tests/ComposedValue/ComposedAnyOfTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function testValueProvidedForEmptyOptionalAnyOfIsInvalid($propertyValue):
3636
ERROR
3737
);
3838

39-
$className = $this->generateClassFromFile('emptyAnyOf.json');
39+
$className = $this->generateClassFromFile('EmptyAnyOf.json');
4040

4141
new $className(['property' => $propertyValue]);
4242
}

tests/ComposedValue/ComposedNotTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testEmptyNotIsInvalid($propertyValue): void
3131
ERROR
3232
);
3333

34-
$className = $this->generateClassFromFile('emptyNot.json');
34+
$className = $this->generateClassFromFile('EmptyNot.json');
3535

3636
new $className(['property' => $propertyValue]);
3737
}

tests/ComposedValue/ComposedOneOfTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ComposedOneOfTest extends AbstractPHPModelGeneratorTest
1616
{
1717
public function testNullProvidedForEmptyOptionalOneOfIsValid(): void
1818
{
19-
$className = $this->generateClassFromFile('emptyOneOf.json');
19+
$className = $this->generateClassFromFile('EmptyOneOf.json');
2020

2121
$object = new $className(['property' => null]);
2222
$this->assertNull($object->getProperty());

0 commit comments

Comments
 (0)