Skip to content

Commit e90643c

Browse files
Format version_tests.py for ruff.
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 0146c5a commit e90643c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tasks/unit_tests/version_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,9 @@ def test_uses_local_cache_without_pipeline_id(self, _mock_file, _mock_exists):
524524
self.assertEqual(get_version_numeric_only(ctx), "7.84.0")
525525
ctx.run.assert_not_called()
526526

527-
@patch.dict(os.environ, {"CI": "true", "CI_PIPELINE_ID": "131065751", "CI_PROJECT_NAME": "datadog-agent"}, clear=True)
527+
@patch.dict(
528+
os.environ, {"CI": "true", "CI_PIPELINE_ID": "131065751", "CI_PROJECT_NAME": "datadog-agent"}, clear=True
529+
)
528530
@patch("tasks.libs.releasing.version.os.path.exists", return_value=False)
529531
def test_fetches_cache_from_s3_when_missing(self, _mock_exists):
530532
ctx = MagicMock()

0 commit comments

Comments
 (0)