Skip to content

Commit

Permalink
clarified test
Browse files Browse the repository at this point in the history
  • Loading branch information
retailcoder committed Dec 8, 2018
1 parent f501e89 commit 2849f0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion RubberduckTests/AutoComplete/SelfClosingPairHandlerTests.cs
Expand Up @@ -73,9 +73,11 @@ public void GivenOpeningCharInsideMultilineArgumentList_ReturnsTrueAndSwallowsKe
var input = '"';
var original = @"Err.Raise 5, _
|".ToCodeString();
var prettified = @"Err.Raise 5, _
|".ToCodeString();
var rePrettified = @"Err.Raise 5, _
""|""".ToCodeString();
var info = new SelfClosingPairTestInfo(original, input, rePrettified);
var info = new SelfClosingPairTestInfo(original, prettified, input, rePrettified);

Assert.IsTrue(Run(info));
Assert.IsTrue(info.Args.Handled);
Expand Down

0 comments on commit 2849f0c

Please sign in to comment.