Skip to content

Commit 5ef1f93

Browse files
authored
Apply fixes from StyleCI (#142)
1 parent 71416dc commit 5ef1f93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/RecordedEndpointDatabasesCreationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
->storeIn('snapshots/databases');
2828
});
2929

30-
it('should throw a handling exception if no title property is added', function(){
30+
it('should throw a handling exception if no title property is added', function () {
3131
$this->httpRecorder->nameForNextRequest('400-no-title-property');
3232
$this->expectException(\FiveamCode\LaravelNotionApi\Exceptions\NotionException::class);
3333
$this->expectExceptionMessage('Bad Request: (validation_error) (Title is not provided)');
@@ -86,7 +86,7 @@
8686
->description('This Database has been created by a Pest Test from Laravel')
8787
->add($scheme)
8888
->createInPage('0adbc2eb57e84569a700a70d537615be');
89-
89+
9090
expect($databaseEntity->getCover())->toEqual('https://example.com/cover.jpg');
9191
expect($databaseEntity->getIcon())->toEqual('https://example.com/cover.jpg');
9292
//TODO: Currently not supported due to Notion API versioning
@@ -123,4 +123,4 @@
123123
expect($databaseEntity->getProperty('Test MultiSelect')->getOptions()[0]->getColor())->toEqual($multiSelectOptions[0]['color']);
124124

125125
expect($databaseEntity->getProperty('Test Number')->getRawResponse()['number']['format'])->toBe('dollar');
126-
});
126+
});

0 commit comments

Comments
 (0)