Skip to content

Commit de3ce4f

Browse files
reformat
1 parent 8aa6f74 commit de3ce4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ def test_scan_with_exception(self, load_mock):
9292
self.assertEqual(1, exitcode)
9393

9494
def test_main_with_exitcode_not_zero(self):
95-
patch('sonar_scanner_python.cli.scan', return_value=42)
95+
patch("sonar_scanner_python.cli.scan", return_value=42)
9696
with self.assertRaises(SystemExit) as main_exit:
9797
main()
9898
main_exit.return_value = 42
99-
99+
100100
def test_version_check_outdated_sonarqube(self):
101101
sq_cloud_api = sq_api_utils.get_sq_server()
102102
sq_cloud_api.get_analysis_version = Mock(return_value=SQVersion.from_str("9.9.9"))

0 commit comments

Comments
 (0)