Skip to content

Commit

Permalink
Reduced streaming test content to 1GB as requested
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Reinert authored and raman-m committed Feb 29, 2024
1 parent 4fba4b5 commit e30ca4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Ocelot.AcceptanceTests/StreamContentTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public StreamContentTest()
public void should_stream_with_content_length()
{
var port = PortFinder.GetRandomPort();
var contentSize = 25L * 1024L * 1024L * 1024L; // 25GB
var contentSize = 1024L * 1024L * 1024L; // 1GB

var configuration = new FileConfiguration
{
Expand Down Expand Up @@ -86,7 +86,7 @@ public void should_stream_with_content_length()
public void should_stream_with_chunked_content()
{
var port = PortFinder.GetRandomPort();
var contentSize = 25L * 1024L * 1024L * 1024L; // 25GB
var contentSize = 1024L * 1024L * 1024L; // 1GB

var configuration = new FileConfiguration
{
Expand Down

0 comments on commit e30ca4d

Please sign in to comment.