Skip to content

Commit 9775407

Browse files
committed
fix: One last format
1 parent e9b9f7a commit 9775407

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_unit_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ class TestBuilder(unittest.TestCase):
246246
def setUp(self):
247247
# Filter deprecation warnings for create_signer function
248248
warnings.filterwarnings("ignore", message="The create_signer function is deprecated")
249-
249+
250250
# Use the fixtures_dir fixture to set up paths
251251
self.data_dir = FIXTURES_DIR
252252
self.testPath = DEFAULT_TEST_FILE
@@ -1083,6 +1083,7 @@ def test_sign_file_overloads(self):
10831083
# Clean up the temporary directory
10841084
shutil.rmtree(temp_dir)
10851085

1086+
10861087
class TestStream(unittest.TestCase):
10871088
def setUp(self):
10881089
# Create a temporary file for testing
@@ -1339,5 +1340,6 @@ def test_sign_file(self):
13391340
if os.path.exists(output_path):
13401341
os.remove(output_path)
13411342

1343+
13421344
if __name__ == '__main__':
13431345
unittest.main()

0 commit comments

Comments
 (0)