1
0
Fork 0

Remove invalid URI formatting test

pull/60/head
Felix Becker 2016-10-10 15:16:07 +02:00
parent 1d5ee25939
commit 3cf1fd9c97
1 changed files with 0 additions and 10 deletions

View File

@ -57,14 +57,4 @@ class FormattingTest extends TestCase
'newText' => $expected 'newText' => $expected
]], json_decode(json_encode($result), true)); ]], json_decode(json_encode($result), true));
} }
public function testFormattingInvalidUri()
{
$client = new LanguageClient(new MockProtocolStream());
$project = new Project($client);
$textDocument = new Server\TextDocument($project, $client);
$result = $textDocument->formatting(new TextDocumentIdentifier('whatever'), new FormattingOptions());
$this->assertSame([], $result);
}
} }