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})")