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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@novell.com>2011-03-25 12:15:08 +0300
committerMike Krüger <mkrueger@novell.com>2011-03-25 12:15:08 +0300
commit977ea114a4efc8f81a3ca01774b6d686214b2a81 (patch)
tree33f475dc117663290be028617c1fa7330838c327 /main/tests
parent7618fdaea09380819bbd978e3000182a798d853d (diff)
Fixed unit test.
Auto completion of tab/punctuation should only work when the flag is set. The bug got changed sooner, but the unit tests weren't adjusted.
Diffstat (limited to 'main/tests')
-rw-r--r--main/tests/UnitTests/MonoDevelop.Projects.Gui/CompletionListWindowTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/tests/UnitTests/MonoDevelop.Projects.Gui/CompletionListWindowTests.cs b/main/tests/UnitTests/MonoDevelop.Projects.Gui/CompletionListWindowTests.cs
index acf3ad7f86..5fae8ff8d2 100644
--- a/main/tests/UnitTests/MonoDevelop.Projects.Gui/CompletionListWindowTests.cs
+++ b/main/tests/UnitTests/MonoDevelop.Projects.Gui/CompletionListWindowTests.cs
@@ -474,7 +474,7 @@ namespace MonoDevelop.Projects.Gui
SimulatedInput = "\t",
AutoSelect = true,
CompleteWithSpaceOrPunctuation = true,
- AutoCompleteEmptyMatch = false,
+ AutoCompleteEmptyMatch = true,
CompletionData = new[] {
"A",
"B",
@@ -490,7 +490,7 @@ namespace MonoDevelop.Projects.Gui
SimulatedInput = " ",
AutoSelect = true,
CompleteWithSpaceOrPunctuation = true,
- AutoCompleteEmptyMatch = false,
+ AutoCompleteEmptyMatch = true,
CompletionData = new[] {
"A",
"B",