aboutsummaryrefslogtreecommitdiff
path: root/weed/s3api/s3api_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/s3api/s3api_test.go')
-rw-r--r--weed/s3api/s3api_test.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/weed/s3api/s3api_test.go b/weed/s3api/s3api_test.go
index 026766beb..6fcf8b165 100644
--- a/weed/s3api/s3api_test.go
+++ b/weed/s3api/s3api_test.go
@@ -1,6 +1,7 @@
package s3api
import (
+ "github.com/chrislusf/seaweedfs/weed/s3api/s3err"
"testing"
"time"
)
@@ -14,7 +15,7 @@ func TestCopyObjectResponse(t *testing.T) {
LastModified: time.Now(),
}
- println(string(encodeResponse(response)))
+ println(string(s3err.EncodeXMLResponse(response)))
}
@@ -27,6 +28,6 @@ func TestCopyPartResponse(t *testing.T) {
LastModified: time.Now(),
}
- println(string(encodeResponse(response)))
+ println(string(s3err.EncodeXMLResponse(response)))
}