Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-topnotch committed Mar 13, 2024
1 parent 72408e0 commit f884e97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/tests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,9 @@ class Tests {
std::string object_name = RandObjectName();
std::string data = "PutObject()";
std::stringstream ss(data);
minio::s3::PutObjectArgs args(ss, static_cast<long>(data.length()), 0); // PWTODO: PutObjectArgs should accept size_t instead of long
minio::s3::PutObjectArgs args(
ss, static_cast<long>(data.length()),
0); // PWTODO: PutObjectArgs should accept size_t instead of long
args.bucket = bucket_name_;
args.object = object_name;
minio::s3::PutObjectResponse resp = client_.PutObject(args);
Expand Down

0 comments on commit f884e97

Please sign in to comment.