summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2021-04-22 09:29:00 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2021-04-22 09:29:00 +1000
commitae2ff14aa0d2f440a2cfe7a39daf12a009f8f914 (patch)
treed0eada7bd948effc9ccf3a7a1e1414102388fa9d /tests
parent3a880f047e5cface9ff77f4d59fd91369d19e6f4 (diff)
tests: improve one of the debug messages
Just "Using ." or whatever the env is set to is not helpful, let's make this message more useful. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_rules_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_rules_xml.py b/tests/test_rules_xml.py
index 3a57bcfd..b833a081 100644
--- a/tests/test_rules_xml.py
+++ b/tests/test_rules_xml.py
@@ -11,7 +11,7 @@ import xml.etree.ElementTree as ET
def _xkb_config_root():
path = os.getenv('XKB_CONFIG_ROOT')
assert path is not None, 'Environment variable XKB_CONFIG_ROOT must be set'
- print(f'Using {path}')
+ print(f'Using XKB_CONFIG_ROOT={path}')
xkbpath = Path(path)
assert (xkbpath / 'rules').exists(), f'{path} is not an XKB installation'