fixed some broken tests.

This commit is contained in:
kay.one 2013-03-26 20:44:52 -07:00
commit ba4950ea8f
32 changed files with 153 additions and 162 deletions

View file

@ -19,7 +19,7 @@ namespace NzbDrone.Core.Indexers
public Indexer Find(Type type)
{
return Queryable().Single(i => i.Type == type.ToString());
return Query.Single(i => i.Type == type.ToString());
}
}
}