diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-09-12 00:46:12 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-09-12 00:46:12 -0700 |
| commit | f6d8525d1d8c1faf9a0826472bfcef0592ba3a93 (patch) | |
| tree | 8856e342215ca37a943c97e09528ead83814e472 /other/java/s3copy/copier/src/test | |
| parent | 98d9aadd37500e31b98e91cbf1b4d4050d90e762 (diff) | |
| download | seaweedfs-f6d8525d1d8c1faf9a0826472bfcef0592ba3a93.tar.xz seaweedfs-f6d8525d1d8c1faf9a0826472bfcef0592ba3a93.zip | |
working S3 multipart uploads
Diffstat (limited to 'other/java/s3copy/copier/src/test')
| -rw-r--r-- | other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java (renamed from other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.java) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.java b/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java index 2bc89b87d..0404dab60 100644 --- a/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/S3CopyTest.java +++ b/other/java/s3copy/copier/src/test/java/com/seaweedfs/s3/PutObjectTest.java @@ -7,7 +7,7 @@ import junit.framework.TestSuite; /** * Unit test for simple App. */ -public class S3CopyTest +public class PutObjectTest extends TestCase { /** @@ -15,7 +15,7 @@ public class S3CopyTest * * @param testName name of the test case */ - public S3CopyTest(String testName ) + public PutObjectTest(String testName ) { super( testName ); } @@ -25,7 +25,7 @@ public class S3CopyTest */ public static Test suite() { - return new TestSuite( S3CopyTest.class ); + return new TestSuite( PutObjectTest.class ); } /** |
