Uncommented tests

This commit is contained in:
Corbo12 2023-07-26 14:32:09 +02:00
parent a46fd3b447
commit f330a40ec1
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
using DistTestCore;
using NUnit.Framework;
using k8s;
using k8s.Models;
namespace TestsLong.BasicTests
{
@ -23,7 +25,8 @@ namespace TestsLong.BasicTests
var testFile = GenerateTestFile(filesizeMb.MB());
var contentId = host.UploadFile(testFile);
var list = new List<Task<TestFile?>>();
//sleep for 1 minute
Thread.Sleep(1200000);
foreach (var node in group)
{
list.Add(Task.Run(() => { return node.DownloadContent(contentId); }));