mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
Update test for disabling cache
This commit is contained in:
parent
e217068dbd
commit
8abdb8bf51
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ namespace NzbDrone.Integration.Test.Client
|
||||||
|
|
||||||
private static void AssertDisableCache(IList<Parameter> headers)
|
private static void AssertDisableCache(IList<Parameter> headers)
|
||||||
{
|
{
|
||||||
headers.Single(c => c.Name == "Cache-Control").Value.Should().Be("no-cache, no-store, must-revalidate");
|
headers.Single(c => c.Name == "Cache-Control").Value.Should().Be("no-cache, no-store, must-revalidate, max-age=0");
|
||||||
headers.Single(c => c.Name == "Pragma").Value.Should().Be("no-cache");
|
headers.Single(c => c.Name == "Pragma").Value.Should().Be("no-cache");
|
||||||
headers.Single(c => c.Name == "Expires").Value.Should().Be("0");
|
headers.Single(c => c.Name == "Expires").Value.Should().Be("0");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue