From 1a6a6fd2fcba96b0caf44d40b5b5ef5d9509bd5b Mon Sep 17 00:00:00 2001 From: computezrmle <57127745+computezrmle@users.noreply.github.com> Date: Sun, 29 Dec 2024 07:34:21 +0100 Subject: [PATCH] Update linux_package_integration_tests.py Add '-/tmp' to 'ReadWritePaths'. --- tests/linux_package_integration_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/linux_package_integration_tests.py b/tests/linux_package_integration_tests.py index 34dbdde308..b0c1e599dd 100644 --- a/tests/linux_package_integration_tests.py +++ b/tests/linux_package_integration_tests.py @@ -148,7 +148,7 @@ def test_user(self): def test_selected_values_from_boinc_client_service_file(self): ts = testset.TestSet("Test selected values from the '/usr/lib/systemd/system/boinc-client.service' file") data = self._get_key_value_pairs_from_file("/usr/lib/systemd/system/boinc-client.service") - ts.expect_equal(data["ReadWritePaths"], "-/var/lib/boinc -/etc/boinc-client", "Test 'ReadWritePaths' is correctly set") + ts.expect_equal(data["ReadWritePaths"], "-/var/lib/boinc -/etc/boinc-client -/tmp", "Test 'ReadWritePaths' is correctly set") ts.expect_equal(data["User"], "boinc", "Test 'User' is correctly set") ts.expect_equal(data["WorkingDirectory"], "/var/lib/boinc", "Test 'WorkingDirectory' is correctly set") ts.expect_equal(data["ExecStart"], "/usr/local/bin/boinc", "Test 'ExecStart' is correctly set")