minor fixes to wtf-gtfo

This commit is contained in:
Keivan Beigi 2014-10-28 17:08:07 -07:00
parent aa68faaf88
commit 380d2624f1
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace NzbDrone.Core.Test.UpdateTests
public void should_get_master_if_branch_doesnt_exit()
{
UseRealHttp();
Subject.GetLatestUpdate("master2", new Version(2, 0)).Should().NotBeNull();
Subject.GetLatestUpdate("invalid_branch", new Version(2, 0)).Should().NotBeNull();
}

View File

@ -52,7 +52,7 @@ namespace NzbDrone.Core.Update
}
catch (Exception e)
{
_logger.ErrorException("couldn't revert back to master.", e);
_logger.ErrorException("Couldn't revert back to master.", e);
}
}