From 8fbbf3d064d17c8436da8b5c6b98ed1c180c4883 Mon Sep 17 00:00:00 2001 From: Ivan Bozhanov Date: Fri, 20 Jan 2017 17:04:14 +0200 Subject: [PATCH] Updated tests --- tests/Server/TextDocument/SignatureHelpTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Server/TextDocument/SignatureHelpTest.php b/tests/Server/TextDocument/SignatureHelpTest.php index 23e35d5..87eed2a 100644 --- a/tests/Server/TextDocument/SignatureHelpTest.php +++ b/tests/Server/TextDocument/SignatureHelpTest.php @@ -77,6 +77,8 @@ class SignatureHelpTest extends TestCase $help = new SignatureHelp; $help->signatures = []; + $help->activeSignature = 0; + $help->activeParameter = 1; $info = new SignatureInformation; $help->signatures[] = $info; $info->label = 'method(string $param = "")';