Skip to content

Commit 9a35466

Browse files
committed
Fix file names
1 parent 527d155 commit 9a35466

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/ComposedValue/ComposedAllOfTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function propertyLevelAllOfSchemaFileDataProvider(): array
5656
return [
5757
'Property level composition' => ['ExtendedPropertyDefinition.json'],
5858
'Multiple objects' => ['ReferencedObjectSchema.json'],
59-
'Empty all of' => ['emptyAllOf.json'],
59+
'Empty all of' => ['EmptyAllOf.json'],
6060
];
6161
}
6262

tests/ComposedValue/ComposedAnyOfTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class ComposedAnyOfTest extends AbstractPHPModelGeneratorTest
1515
{
1616
public function testNullProvidedForEmptyOptionalAnyOfIsValid(): void
1717
{
18-
$className = $this->generateClassFromFile('emptyAnyOf.json');
18+
$className = $this->generateClassFromFile('EmptyAnyOf.json');
1919

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

tests/ComposedValue/ComposedOneOfTest.php

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

40-
$className = $this->generateClassFromFile('emptyOneOf.json');
40+
$className = $this->generateClassFromFile('EmptyOneOf.json');
4141

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

0 commit comments

Comments
 (0)