Taragolis commented on code in PR #28145:
URL: https://github.com/apache/airflow/pull/28145#discussion_r1041470239


##########
tests/providers/amazon/aws/transfers/test_dynamodb_to_s3.py:
##########
@@ -18,13 +18,12 @@
 from __future__ import annotations
 
 import json
-import unittest
 from unittest.mock import MagicMock, patch
 
 from airflow.providers.amazon.aws.transfers.dynamodb_to_s3 import 
DynamoDBToS3Operator
 
 
-class DynamodbToS3Test(unittest.TestCase):
+class DynamodbToS3Test:
     def setUp(self):

Review Comment:
   For some reason keeping `setUp` not affect test execution `¯\_(ツ)_/¯`
   
   ```suggestion
   class DynamodbToS3Test:
       def setup_method(self):
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to