From c23fd4986d6d14ca8d30a6e52194c6838f1002ac Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Mon, 6 Mar 2017 06:17:11 +0100 Subject: [PATCH] Fix SettingsRepositoryTest. --- Tests/Controller/SettingsRepositoryTest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/Controller/SettingsRepositoryTest.cs b/Tests/Controller/SettingsRepositoryTest.cs index 6e70650..1481415 100755 --- a/Tests/Controller/SettingsRepositoryTest.cs +++ b/Tests/Controller/SettingsRepositoryTest.cs @@ -27,18 +27,18 @@ namespace Tests.Controller [TestFixture] class SettingsRepositoryTest { - string _savedSettings; + SettingsRepository _savedRepository; [SetUp] public void SetUp() { - _savedSettings = zaaReloaded2.UserSettings.Default.SettingsRepository; + _savedRepository = zaaReloaded2.UserSettings.Default.SettingsRepository; } [TearDown] public void TearDown() { - zaaReloaded2.UserSettings.Default.SettingsRepository = _savedSettings; + zaaReloaded2.UserSettings.Default.SettingsRepository = _savedRepository; zaaReloaded2.UserSettings.Default.Save(); }