Skip to content

Commit

Permalink
Fix log line formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nivi-apple committed Aug 28, 2024
1 parent 23266ac commit 8282355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python_testing/TC_TSTAT_4_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ async def test_TC_TSTAT_4_2(self):
# Since for built in presets, we can't add any more entries. That might cause the size of testPresets not to exceed the number of presets supported.
# If so, skip the test.
if not len(testPresets) > numberOfPresetsSupported:
logger.info(f"Couldn't run test step 18 since we couldn't build a list that exceeds number of supported presets")
logger.info("Couldn't run test step 18 since we couldn't build a list that exceeds number of supported presets")
else:
# Send the AtomicRequest begin command
await self.send_atomic_request_begin_command()
Expand All @@ -544,7 +544,7 @@ async def test_TC_TSTAT_4_2(self):
await self.send_atomic_request_rollback_command()
else:
logger.info(
f"Couldn't run test step 18 since there are not enough preset types to build a Presets list that exceeds the number of presets supported")
"Couldn't run test step 18 since there are not enough preset types to build a Presets list that exceeds the number of presets supported")


if __name__ == "__main__":
Expand Down

0 comments on commit 8282355

Please sign in to comment.