@@ -175,7 +175,7 @@ static int s3_cancel_test_helper(struct aws_allocator *allocator, enum s3_update
175
175
AWS_ASSERT (allocator );
176
176
177
177
struct aws_s3_tester tester ;
178
- ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester , false ));
178
+ ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester ));
179
179
180
180
struct s3_cancel_test_user_data test_user_data = {
181
181
.type = cancel_type ,
@@ -285,7 +285,7 @@ static int s3_cancel_test_helper_fc(
285
285
AWS_ASSERT (allocator );
286
286
287
287
struct aws_s3_tester tester ;
288
- ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester , true ));
288
+ ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester ));
289
289
290
290
struct s3_cancel_test_user_data test_user_data = {
291
291
.type = cancel_type ,
@@ -346,14 +346,9 @@ static int s3_cancel_test_helper_fc(
346
346
// Range for the second 16k
347
347
const struct aws_byte_cursor range = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL ("bytes=16384-32767" );
348
348
349
- struct aws_signing_config_aws get_signing_config ;
350
-
351
- aws_s3_init_default_signing_config (& get_signing_config , g_test_s3_region , tester .credentials_provider );
352
-
353
349
struct aws_s3_tester_meta_request_options options = {
354
350
.allocator = allocator ,
355
351
.client = client ,
356
- .signing_config = & get_signing_config ,
357
352
.validate_get_response_checksum = true,
358
353
.meta_request_type = AWS_S3_META_REQUEST_TYPE_GET_OBJECT ,
359
354
.validate_type = AWS_S3_TESTER_VALIDATE_TYPE_EXPECT_FAILURE ,
@@ -590,7 +585,7 @@ static int s_test_s3_cancel_prepare(struct aws_allocator *allocator, void *ctx)
590
585
(void )ctx ;
591
586
592
587
struct aws_s3_tester tester ;
593
- ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester , false ));
588
+ ASSERT_SUCCESS (aws_s3_tester_init (allocator , & tester ));
594
589
595
590
struct test_s3_cancel_prepare_user_data test_user_data ;
596
591
AWS_ZERO_STRUCT (test_user_data );
0 commit comments