Skip to content

Commit 92c7df5

Browse files
committed
Fix the syntax for string formating
Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
1 parent b0cabaa commit 92c7df5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

TestCases/TestCase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,6 +796,6 @@ def is_enabled(self):
796796
is_enabled = self.cpu_arch in self.enabled_on_cpu_arch
797797

798798
if not is_enabled:
799-
print('Ignoring test "%s" because it is not enabled for the current CPU architecture: %s' % self.tag, self.cpu_arch)
799+
print('Ignoring test "%s" because it is not enabled for the current CPU architecture: %s' % (self.tag, self.cpu_arch))
800800

801801
return is_enabled

0 commit comments

Comments
 (0)