You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-09-16 09:26:36 +02:00
fixed broken test
log file is not kept open anymore
This commit is contained in:
@@ -22,7 +22,6 @@ namespace NzbDrone.Test.Common
|
||||
{
|
||||
_subject = null;
|
||||
|
||||
Mocker.SetConstant<ICacheManger>(new CacheManger());
|
||||
}
|
||||
|
||||
protected TSubject Subject
|
||||
@@ -77,6 +76,7 @@ namespace NzbDrone.Test.Common
|
||||
{
|
||||
GetType().IsPublic.Should().BeTrue("All Test fixtures should be public to work in mono.");
|
||||
|
||||
Mocker.SetConstant<ICacheManger>(new CacheManger());
|
||||
|
||||
Mocker.SetConstant(LogManager.GetLogger("TestLogger"));
|
||||
|
||||
@@ -86,6 +86,7 @@ namespace NzbDrone.Test.Common
|
||||
|
||||
MockedRestProvider = new Mock<RestProvider>();
|
||||
|
||||
|
||||
Directory.CreateDirectory(TempFolder);
|
||||
}
|
||||
|
||||
|
@@ -18,7 +18,7 @@
|
||||
<layout>${exception:format=ToString}</layout>
|
||||
</parameter>
|
||||
</target>
|
||||
<target xsi:type="File" name="rollingFileLogger" fileName="${appLog}" autoFlush="true" keepFileOpen="true"
|
||||
<target xsi:type="File" name="rollingFileLogger" fileName="${appLog}" autoFlush="true" keepFileOpen="false"
|
||||
concurrentWrites="false" concurrentWriteAttemptDelay="50" concurrentWriteAttempts ="10"
|
||||
archiveAboveSize="1024000" maxArchiveFiles="5" enableFileDelete="true" archiveNumbering ="Rolling"
|
||||
layout="${date:format=yy-M-d HH\:mm\:ss.f}|${level}|${logger}|${message}${onexception:inner=${newline}${newline}${exception:format=ToString}${newline}}"/>
|
||||
|
Reference in New Issue
Block a user