1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed broken tests.

Fixed spelling mistake.
This commit is contained in:
Mark McDowall
2012-03-06 23:34:26 -08:00
parent 842f811ef7
commit 861f6c1a0c
3 changed files with 13 additions and 9 deletions
@@ -51,17 +51,17 @@ namespace NzbDrone.Test.Common
public static void ExpectedErrors(int count)
{
Excpected(LogLevel.Error, count);
Expected(LogLevel.Error, count);
}
public static void ExpectedFatals(int count)
{
Excpected(LogLevel.Fatal, count);
Expected(LogLevel.Fatal, count);
}
public static void ExpectedWarns(int count)
{
Excpected(LogLevel.Warn, count);
Expected(LogLevel.Warn, count);
}
public static void IgnoreWarns()
@@ -96,7 +96,7 @@ namespace NzbDrone.Test.Common
}
}
private static void Excpected(LogLevel level, int count)
private static void Expected(LogLevel level, int count)
{
var levelLogs = _logs.Where(l => l.Level == level).ToList();