From 5c47f193d4486cadee6d02444d16b946a73421e3 Mon Sep 17 00:00:00 2001 From: Javanaut Date: Tue, 29 Oct 2024 00:54:00 +0100 Subject: [PATCH] ni --- bin/ffx/test/scenario_1.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/ffx/test/scenario_1.py b/bin/ffx/test/scenario_1.py index dc144d7..68ebdd7 100644 --- a/bin/ffx/test/scenario_1.py +++ b/bin/ffx/test/scenario_1.py @@ -56,9 +56,9 @@ class Scenario1(Scenario): # Phase 3: Run ffx commandSequence = [sys.executable, self._ffxExecutablePath, - '--no-prompt', 'convert', - mediaFilePath] + mediaFilePath, + '--no-prompt'] self._logger.debug(f"Scenario1.run(): sub={trackCombination.getIdentifier()} test sequence: {commandSequence}") @@ -101,11 +101,11 @@ class Scenario1(Scenario): # assert dispositions evaluateFunc(resultMediaTracks) - self._reportLogger.info('Scenario 1 test passed') + self._reportLogger.info(f"Scenario 1 sub={trackCombination.getIdentifier()} test passed") except AssertionError as ae: - self._reportLogger.error(f"Scenario 1 test failed ({ae})") + self._reportLogger.error(f"Scenario 1 sub={trackCombination.getIdentifier()} test failed ({ae})")