File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -232,23 +232,10 @@ INSTANTIATE_TEST_SUITE_P(
232
232
// ParsedS3URL Functionality Tests
233
233
// =============================================================================
234
234
235
- class ParsedS3URLFunctionalityTest : public ::testing::Test
236
- {
237
- protected:
238
- void SetUp () override
239
- {
240
- // Set up clean test environment
241
- unsetenv (" AWS_ACCESS_KEY_ID" );
242
- unsetenv (" AWS_SECRET_ACCESS_KEY" );
243
- unsetenv (" AWS_SESSION_TOKEN" );
244
- unsetenv (" AWS_PROFILE" );
245
- }
246
- };
247
-
248
235
/* *
249
236
* Test that region defaults are handled correctly
250
237
*/
251
- TEST_F (ParsedS3URLFunctionalityTest, regionDefaultHandling)
238
+ TEST (ParsedS3URLFunctionalityTest, regionDefaultHandling)
252
239
{
253
240
// Test with explicit region
254
241
auto s3WithRegion = ParsedS3URL{
@@ -271,7 +258,7 @@ TEST_F(ParsedS3URLFunctionalityTest, regionDefaultHandling)
271
258
/* *
272
259
* Test custom endpoint handling (e.g., for MinIO or LocalStack)
273
260
*/
274
- TEST_F (ParsedS3URLFunctionalityTest, customEndpointHandling)
261
+ TEST (ParsedS3URLFunctionalityTest, customEndpointHandling)
275
262
{
276
263
auto s3WithEndpoint = ParsedS3URL{
277
264
.bucket = " bucket" ,
You can’t perform that action at this time.
0 commit comments