From c100f58906fe81bf07085ed1784603045f9c3695 Mon Sep 17 00:00:00 2001 From: Kevin Hahn Date: Mon, 16 Oct 2023 14:55:11 +0700 Subject: [PATCH] size down send new project test --- backend/Testing/SyncReverseProxy/SendReceiveServiceTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Testing/SyncReverseProxy/SendReceiveServiceTests.cs b/backend/Testing/SyncReverseProxy/SendReceiveServiceTests.cs index e91e03182..c3d9f5e24 100644 --- a/backend/Testing/SyncReverseProxy/SendReceiveServiceTests.cs +++ b/backend/Testing/SyncReverseProxy/SendReceiveServiceTests.cs @@ -180,8 +180,8 @@ await apiTester HgRunner.Run("""hg commit -m "first commit" """, sendReceiveParams.DestDir, 1, progress); //add a bunch of small files, must be in separate commits otherwise hg runs out of memory. But we want the push to be large - const int totalSizeMb = 1100; - const int fileCount = 25; + const int totalSizeMb = 100; + const int fileCount = 10; for (int i = 1; i <= fileCount; i++) { var bigFileName = $"big-file{i}.bin";