Skip to content

Commit ce085aa

Browse files
ebozdumanErsan Bozduman
andauthored
fixes PutObject_Test9 failure during PR merge (#1058)
Co-authored-by: Ersan Bozduman <ersanbozduman@gmail.com>
1 parent d0a45a4 commit ce085aa

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Minio.Functional.Tests/FunctionalTest.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3501,11 +3501,11 @@ internal static async Task PutObject_Test9(IMinioClient minio)
35013501
totalBytesTransferred = progressReport.TotalBytesTransferred;
35023502
// Console.WriteLine(
35033503
// $"PutObject_Test9 - Percentage: {progressReport.Percentage}% TotalBytesTransferred: {progressReport.TotalBytesTransferred} bytes");
3504-
if (progressReport.Percentage != 100)
3505-
{
3506-
var topPosition = Console.CursorTop > 0 ? Console.CursorTop - 1 : Console.CursorTop;
3507-
Console.SetCursorPosition(0, topPosition);
3508-
}
3504+
// if (progressReport.Percentage != 100)
3505+
// {
3506+
// var topPosition = Console.CursorTop > 0 ? Console.CursorTop - 1 : Console.CursorTop;
3507+
// Console.SetCursorPosition(0, topPosition);
3508+
// }
35093509
// else Console.WriteLine();
35103510
});
35113511
var args = new Dictionary<string, string>
@@ -3558,11 +3558,11 @@ internal static async Task PutObject_Test10(IMinioClient minio)
35583558
totalBytesTransferred = progressReport.TotalBytesTransferred;
35593559
// Console.WriteLine(
35603560
// $"PutObject_Test10 - Percentage: {progressReport.Percentage}% TotalBytesTransferred: {progressReport.TotalBytesTransferred} bytes");
3561-
if (progressReport.Percentage != 100)
3562-
{
3563-
var topPosition = Console.CursorTop > 0 ? Console.CursorTop - 1 : Console.CursorTop;
3564-
Console.SetCursorPosition(0, topPosition);
3565-
}
3561+
// if (progressReport.Percentage != 100)
3562+
// {
3563+
// var topPosition = Console.CursorTop > 0 ? Console.CursorTop - 1 : Console.CursorTop;
3564+
// Console.SetCursorPosition(0, topPosition);
3565+
// }
35663566
// else Console.WriteLine();
35673567
});
35683568
var args = new Dictionary<string, string>

0 commit comments

Comments
 (0)