From bd79c7c518178224e4d44a0f88482dd6fc5188ca Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Wed, 23 Aug 2017 17:33:31 -0400 Subject: [PATCH] avocado/plugins/replay.py: remove misleading TODO comment The current state of this comment is the result of a mechanical change replacing `urls` with `references`. The source for references given on the command line is working as intended, that is, if test references are given on the command line they are taken and will override the ones on the replay args. Signed-off-by: Cleber Rosa --- avocado/plugins/replay.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/avocado/plugins/replay.py b/avocado/plugins/replay.py index c98681bb..ac146f7b 100644 --- a/avocado/plugins/replay.py +++ b/avocado/plugins/replay.py @@ -226,8 +226,6 @@ class Replay(CLI): elif option in replay_args: setattr(args, option, replay_args[option]) - # Keeping this for compatibility. - # TODO: Use replay_args['reference'] at some point in the future. if getattr(args, 'reference', None): LOG_UI.warn('Overriding the replay test references with test ' 'references given in the command line.') -- GitLab