summaryrefslogtreecommitdiff
path: root/test/dbus
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2022-09-30 11:49:49 -0500
committerTony Asleson <tasleson@redhat.com>2022-09-30 11:51:23 -0500
commit599cbd7dd37ba50b44579f64207cc1e47e004899 (patch)
tree02eadfcbf1d91feff7a467f9e57cf8dae709879b /test/dbus
parentb09de683c72b62167fbbd64491708ede652c32a1 (diff)
downloadlvm2-599cbd7dd37ba50b44579f64207cc1e47e004899.tar.gz
lvmdbusd: Correct env. variable
Make this match the unit test expectation and the form we use for other env. variables.
Diffstat (limited to 'test/dbus')
-rwxr-xr-xtest/dbus/validatestate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dbus/validatestate.py b/test/dbus/validatestate.py
index ae999ad17..1af303f15 100755
--- a/test/dbus/validatestate.py
+++ b/test/dbus/validatestate.py
@@ -21,7 +21,7 @@ import os
if __name__ == "__main__":
- use_session = os.getenv('LVMDBUSD_USE_SESSION', False)
+ use_session = os.getenv('LVMD_BUSD_USE_SESSION', False)
if use_session:
bus = dbus.SessionBus(mainloop=DBusGMainLoop())