fixed recursion bug.

This commit is contained in:
Keivan Beigi 2013-03-28 12:18:08 -07:00
parent b73485a58b
commit 7eb0d62c53
2 changed files with 2 additions and 1 deletions

View file

@ -29,7 +29,7 @@ namespace NzbDrone.Core.Test.Framework
protected string ReadAllText(params string[] path)
{
return ReadAllText(Path.Combine(path));
return File.ReadAllText(Path.Combine(path));
}
}