From c2a9bda74a139d1c87bfc8562e76e4b1a183c4fa Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Sun, 12 Aug 2018 09:55:20 -0700 Subject: [PATCH] Fix path to where sl is installed in plugin test I guess sl is *technically* a game. I'm sure there was a long winded argument about where it should be in a mailing list somewhere. --- integration-tests/test_simplest_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/test_simplest_plugin.py b/integration-tests/test_simplest_plugin.py index 0064616..c35de5d 100644 --- a/integration-tests/test_simplest_plugin.py +++ b/integration-tests/test_simplest_plugin.py @@ -12,7 +12,7 @@ def test_apt_packages(): """ Test extra apt packages are installed """ - assert os.path.exists('/usr/bin/sl') + assert os.path.exists('/usr/games/sl') def test_pip_packages():