From 58273bb8f6ccf007042d4ffaf4a6dbff1d78f8c9 Mon Sep 17 00:00:00 2001 From: nobkd <44443899+nobkd@users.noreply.github.com> Date: Tue, 10 Oct 2023 22:50:01 +0200 Subject: [PATCH] chore: use smaller plugin for testing --- test/07_install_multiple.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/07_install_multiple.py b/test/07_install_multiple.py index 136e626..683f045 100755 --- a/test/07_install_multiple.py +++ b/test/07_install_multiple.py @@ -4,7 +4,7 @@ import pexpect import subprocess -c = pexpect.spawn('./bin/opi -m android-tools ocenaudio', logfile=sys.stdout.buffer, echo=False) +c = pexpect.spawn('./bin/opi -m android-tools yandex-disk', logfile=sys.stdout.buffer, echo=False) # plugins are installed first c.expect('Do you want to install') @@ -31,5 +31,5 @@ c.close() print() assert c.exitstatus == 0, f'Exit code: {c.exitstatus}' -subprocess.check_call(['rpm', '-qi', 'ocenaudio']) +subprocess.check_call(['rpm', '-qi', 'yandex-disk']) subprocess.check_call(['rpm', '-qi', 'android-tools'])