Skip to content

Commit

Permalink
use deterministic order for updated env vars (#196)
Browse files Browse the repository at this point in the history
Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
  • Loading branch information
dirk-thomas authored Sep 4, 2019
1 parent e17328e commit 95cab1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ament_cmake_test/ament_cmake_test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def log(msg, **kwargs):
env[key] = value
updated_env_keys.add(key)
previous_key = key
for key in updated_env_keys:
for key in sorted(updated_env_keys):
log(' - {0}={1}'.format(key, env[key]))
if args.append_env:
log('-- run_test.py: extra environment variables to append:')
Expand Down

0 comments on commit 95cab1d

Please sign in to comment.