Skip to content

Commit

Permalink
fixed build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
retailcoder committed Oct 24, 2018
1 parent 46d6eef commit 5eb2488
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rubberduck.Core/UI/UnitTesting/TestExplorerViewModel.cs
Expand Up @@ -99,7 +99,7 @@ private void TestEngineTestCompleted(object sender, TestCompletedEventArgs e)
public INavigateSource SelectedItem => SelectedTest;

private TestMethodViewModel _selectedTest;
internal TestMethodViewModel SelectedTest
public TestMethodViewModel SelectedTest
{
get => _selectedTest;
set
Expand Down
4 changes: 3 additions & 1 deletion RubberduckTests/AutoComplete/SmartConcatCompletionTests.cs
Expand Up @@ -109,7 +109,9 @@ private static SmartConcatenationHandler InitializeSut(TestCodeString original,
}
module.Setup(m => m.GetLines(original.SnippetPosition)).Returns(prettified.Code);

settings = new AutoCompleteSettings(Enumerable.Empty<AutoCompleteSetting>()) { EnableSmartConcat = true };
settings = new AutoCompleteSettings {IsEnabled = true};
settings.SmartConcat.IsEnabled = true;
settings.SmartConcat.ConcatVbNewLineModifier = ModifierKeySetting.CtrlKey;

var handler = new CodePaneSourceCodeHandler(new ProjectsRepository(vbe.Object));
var sut = new SmartConcatenationHandler(handler);
Expand Down

0 comments on commit 5eb2488

Please sign in to comment.