Fixed broken tests, DeskMetrics now has a different id during dev and production.

This commit is contained in:
kay.one 2012-01-25 17:52:47 -08:00
commit 340f05aef4
3 changed files with 8 additions and 6 deletions

View file

@ -140,11 +140,8 @@ namespace NzbDrone.Core.Test.ProviderTests
[Description("This test will use reflection to ensure each config property read/writes to a unique key")]
public void config_properties_should_write_and_read_using_same_key()
{
WithStrictMocker();
var configProvider = Mocker.Resolve<ConfigProvider>();
var allProperties = typeof(ConfigProvider).GetProperties();
var allProperties = typeof(ConfigProvider).GetProperties().Where(p => p.GetSetMethod() != null);
//Act