fixed some broken tests.

This commit is contained in:
kay.one
2013-03-26 20:44:52 -07:00
parent c1960525d7
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());
}
}
}