Skip to content

Commit 0e28e45

Browse files
authored
Merge pull request #4624 from retailcoder/redim
Fixes command type in CE viewmodel
2 parents e48e396 + f3776cb commit 0e28e45

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Rubberduck.Core/Navigation/CodeExplorer/CodeExplorerViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ public double FontSize
547547
public AddTestModuleWithStubsCommand AddTestModuleWithStubsCommand { get; set; }
548548
public AddTemplateCommand AddTemplateCommand { get; set; }
549549
public OpenDesignerCommand OpenDesignerCommand { get; set; }
550-
public CommandBase OpenProjectPropertiesCommand { get; set; }
550+
public OpenProjectPropertiesCommand OpenProjectPropertiesCommand { get; set; }
551551
public SetAsStartupProjectCommand SetAsStartupProjectCommand { get; set; }
552552
public RenameCommand RenameCommand { get; set; }
553553
public IndentCommand IndenterCommand { get; set; }

RubberduckTests/AutoComplete/SelfClosingPairHandlerTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,11 @@ public void GivenOpeningCharInsideMultilineArgumentList_ReturnsTrueAndSwallowsKe
7373
var input = '"';
7474
var original = @"Err.Raise 5, _
7575
|".ToCodeString();
76+
var prettified = @"Err.Raise 5, _
77+
|".ToCodeString();
7678
var rePrettified = @"Err.Raise 5, _
7779
""|""".ToCodeString();
78-
var info = new SelfClosingPairTestInfo(original, input, rePrettified);
80+
var info = new SelfClosingPairTestInfo(original, prettified, input, rePrettified);
7981

8082
Assert.IsTrue(Run(info));
8183
Assert.IsTrue(info.Args.Handled);

0 commit comments

Comments
 (0)