Skip to content

Commit

Permalink
style: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomli380576 committed Oct 17, 2024
1 parent a56fe58 commit baf08fa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions providers/base/tests/test_reboot_check_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def do_nothing(args: T.List[str], **kwargs):
else:
return sp.CompletedProcess(args, 0, "".encode(), "".encode())


class UnitySupportParserTests(unittest.TestCase):
def setUp(self):
self.tester = RCT.HardwareRendererTester()
Expand Down Expand Up @@ -243,9 +244,7 @@ class FailedServiceCheckerTests(unittest.TestCase):

@patch("subprocess.run")
def test_get_failed_services_happy_path(self, mock_run: MagicMock):
mock_run.return_value = sp.CompletedProcess(
[], 0, "",""
)
mock_run.return_value = sp.CompletedProcess([], 0, "", "")
self.assertEqual(RCT.get_failed_services(), [])

@patch("subprocess.run")
Expand Down

0 comments on commit baf08fa

Please sign in to comment.