summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/integration_tests/modules/test_combined.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/integration_tests/modules/test_combined.py b/tests/integration_tests/modules/test_combined.py
index 264e2383..8481b454 100644
--- a/tests/integration_tests/modules/test_combined.py
+++ b/tests/integration_tests/modules/test_combined.py
@@ -60,7 +60,7 @@ rsyslog:
content: |
module(load="imtcp")
input(type="imtcp" port="514")
- $template RemoteLogs,"/var/tmp/rsyslog.log"
+ $template RemoteLogs,"/var/spool/rsyslog/cloudinit.log"
*.* ?RemoteLogs
& ~
remotes:
@@ -175,7 +175,9 @@ class TestCombined:
def test_rsyslog(self, class_client: IntegrationInstance):
"""Test rsyslog is configured correctly."""
client = class_client
- assert "My test log" in client.read_from_file("/var/tmp/rsyslog.log")
+ assert "My test log" in client.read_from_file(
+ "/var/spool/rsyslog/cloudinit.log"
+ )
def test_runcmd(self, class_client: IntegrationInstance):
"""Test runcmd works as expected"""