From dcbc93a117b0efaa0e42fa6359eed4a71a9ca341 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 10 Jun 2022 02:04:30 +0300 Subject: tests: Convert to formatted string literals Use formatted string literals to replace legacy printf-style string formatting. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- tests/kms-test-connectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/kms-test-connectors.py') diff --git a/tests/kms-test-connectors.py b/tests/kms-test-connectors.py index 54cc89f..d2ca636 100755 --- a/tests/kms-test-connectors.py +++ b/tests/kms-test-connectors.py @@ -10,7 +10,7 @@ class ConnectorsTest(kmstest.KMSTest): def main(self): for connector in self.card.connectors: - self.start('connector %s' % connector.fullname) + self.start(f'connector {connector.fullname}') # Every connector should have at least one suitable CRTC crtcs = connector.get_possible_crtcs() -- cgit v1.2.3