Skip to content

Commit d1d3e70

Browse files
committed
ignored SettingsControlTests.cs - these tests actually physically modify the contents of the settings file on disk.
1 parent 0e9801b commit d1d3e70

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

RubberduckTests/Settings/SettingsControlTests.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
namespace RubberduckTests.Settings
1212
{
1313
[TestClass]
14+
[Ignore] // these tests incur IO and actually modify the config file.
1415
public class SettingsControlTests
1516
{
1617
private Configuration GetDefaultConfig()
@@ -20,8 +21,8 @@ private Configuration GetDefaultConfig()
2021
Language = new DisplayLanguageSetting("en-US"),
2122
HotkeySettings = new[]
2223
{
23-
new HotkeySetting{Name="IndentProcedure", IsEnabled=true, Key1="CTRL-P"},
24-
new HotkeySetting{Name="IndentModule", IsEnabled=true, Key1="CTRL-M"}
24+
new HotkeySetting{Name="IndentProcedure", IsEnabled=true, Key1="^P"},
25+
new HotkeySetting{Name="IndentModule", IsEnabled=true, Key1="^M"}
2526
},
2627
AutoSaveEnabled = false,
2728
AutoSavePeriod = 10

0 commit comments

Comments
 (0)