We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54cecca commit 2ccc3b2Copy full SHA for 2ccc3b2
tests/s3_s3express_client_test.c
@@ -721,6 +721,7 @@ TEST_CASE(s3express_client_copy_object_multipart) {
721
*/
722
TEST_CASE(s3express_hash_key_test) {
723
(void)ctx;
724
+ aws_s3_library_init(allocator);
725
726
struct aws_string *access_key = aws_string_new_from_c_str(allocator, "AccessKey");
727
struct aws_string *secret_access_key = aws_string_new_from_c_str(allocator, "SecretAccessKey");
@@ -767,5 +768,7 @@ TEST_CASE(s3express_hash_key_test) {
767
768
aws_string_destroy(hash_key);
769
aws_http_headers_release(headers);
770
- return 0;
771
+ aws_s3_library_clean_up();
772
+
773
+ return AWS_OP_SUCCESS;
774
}
0 commit comments