From 88b4153c119f30ff61a09e4d43934cf236b88cda Mon Sep 17 00:00:00 2001 From: IvenBach Date: Fri, 4 Oct 2019 21:41:58 -0700 Subject: [PATCH] Covert to const --- Rubberduck.Core/UI/UnitTesting/TestExplorerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rubberduck.Core/UI/UnitTesting/TestExplorerWindow.cs b/Rubberduck.Core/UI/UnitTesting/TestExplorerWindow.cs index 86335c1789..13be61c08f 100644 --- a/Rubberduck.Core/UI/UnitTesting/TestExplorerWindow.cs +++ b/Rubberduck.Core/UI/UnitTesting/TestExplorerWindow.cs @@ -18,7 +18,7 @@ public TestExplorerWindow(TestExplorerViewModel viewModel) : this() public TestExplorerViewModel ViewModel { get; } // FIXME bare ClassId... not good - public string ClassId => "9CF1392A-2DC9-48A6-AC0B-E601A9802608"; + public const string ClassId = "9CF1392A-2DC9-48A6-AC0B-E601A9802608"; public string Caption => TestExplorer.TestExplorerWindow_Caption; }