Skip to content

Commit c1ced78

Browse files
dkarloviDannyvdSluijs
authored andcommitted
code style
1 parent 9e55278 commit c1ced78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ValidatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ public function testValidateWithAssocSchema(): void
2020

2121
public function testValidateWithAssocSchemaWithRelativeRefs(): void
2222
{
23-
$schema = json_decode(file_get_contents(__DIR__.'/fixtures/relative.json'), true);
23+
$schema = json_decode(file_get_contents(__DIR__ . '/fixtures/relative.json'), true);
2424
$data = json_decode('{"foo":{"foo": "bar"}}', false);
2525

2626
$validator = new Validator();
2727
$validator->validate($data, $schema);
28-
28+
2929
$this->assertTrue($validator->isValid(), 'Validation failed, but should have succeeded.');
3030
}
3131

0 commit comments

Comments
 (0)