From b70e8033f3649f355874cabe5a2f20420a2cc4ec Mon Sep 17 00:00:00 2001 From: Corbo12 Date: Thu, 20 Apr 2023 15:58:47 +0200 Subject: [PATCH] WIP merge with main --- Tests/BasicTests/ParallelTests.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Tests/BasicTests/ParallelTests.cs b/Tests/BasicTests/ParallelTests.cs index c9c13b9..138dc41 100644 --- a/Tests/BasicTests/ParallelTests.cs +++ b/Tests/BasicTests/ParallelTests.cs @@ -1,5 +1,5 @@ -using CodexDistTestCore; -using CodexDistTestCore.Config; +using DistTestCore; +using KubernetesWorkflow; using NUnit.Framework; namespace Tests.ParallelTests { @@ -21,7 +21,7 @@ namespace Tests.ParallelTests { ParallelDownload(10, 16.MB()); } - public void download(ContentId contentId, CodexDistTestCore.IOnlineCodexNode node, TestFile testFile) + public void download(ContentId contentId, IOnlineCodexNode node, TestFile testFile) { var downloadedFile = node.DownloadContent(contentId); testFile.AssertIsEqual(downloadedFile); @@ -96,12 +96,12 @@ namespace Tests.ParallelTests // Task.WaitAll(); } - void download(ContentId contentId, CodexDistTestCore.IOnlineCodexNode node, TestFile testFile) + void download(ContentId contentId, IOnlineCodexNode node, TestFile testFile) { var downloadedFile = node.DownloadContent(contentId); testFile.AssertIsEqual(downloadedFile); } - void upload(CodexDistTestCore.IOnlineCodexNode host, TestFile testfile, List contentIds, int pos) + void upload(IOnlineCodexNode host, TestFile testfile, List contentIds, int pos) { contentIds[pos] = host.UploadFile(testfile); }