Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@gmail.com>2014-03-27 11:45:14 +0400
committerDavid Karlaš <david.karlas@gmail.com>2014-03-27 11:45:14 +0400
commitb6ccdb97787cbfdbf3658f3e70425c5b65a4dc1c (patch)
tree70c7118aacf2b995cd5bf6957fab17dfc26fae40 /ICSharpCode.NRefactory.Tests
parent237192066d3f82831f892c1b30b565799bfdece3 (diff)
Always displaying first parameter discription in ParameterInfo tooltip
Diffstat (limited to 'ICSharpCode.NRefactory.Tests')
-rw-r--r--ICSharpCode.NRefactory.Tests/CSharp/CodeCompletion/GetCurrentParameterIndexTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ICSharpCode.NRefactory.Tests/CSharp/CodeCompletion/GetCurrentParameterIndexTests.cs b/ICSharpCode.NRefactory.Tests/CSharp/CodeCompletion/GetCurrentParameterIndexTests.cs
index fb6ac2ba..976dfd1c 100644
--- a/ICSharpCode.NRefactory.Tests/CSharp/CodeCompletion/GetCurrentParameterIndexTests.cs
+++ b/ICSharpCode.NRefactory.Tests/CSharp/CodeCompletion/GetCurrentParameterIndexTests.cs
@@ -64,7 +64,7 @@ namespace ICSharpCode.NRefactory.CSharp.CodeCompletion
public void TestFirstParameterStart ()
{
var index = GetIndex("@Test($");
- Assert.AreEqual(0, index);
+ Assert.AreEqual(1, index);
}
[Test]