diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-12-22 13:46:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-22 13:46:58 +0100 |
commit | eb313d1ce15b65a5d4f69338f00beeeb5e824652 (patch) | |
tree | 7b0088f3218dd19a71e7c1da71fbfa7313538bd8 /smoketest | |
parent | 0cbd24fb4a73c7a7cab6243830fcff7c5ae6bcf1 (diff) | |
parent | ba9850c74b3d79d7b75093c3ef88fa97fa244b9f (diff) | |
download | vyos-1x-eb313d1ce15b65a5d4f69338f00beeeb5e824652.tar.gz vyos-1x-eb313d1ce15b65a5d4f69338f00beeeb5e824652.zip |
Merge pull request #1722 from aapostoliuk/webproxybackport
T3810: Fixed all issues in T3810
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_service_webproxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_service_webproxy.py b/smoketest/scripts/cli/test_service_webproxy.py index dfccced0a..75486337a 100755 --- a/smoketest/scripts/cli/test_service_webproxy.py +++ b/smoketest/scripts/cli/test_service_webproxy.py @@ -241,8 +241,8 @@ class TestServiceWebProxy(VyOSUnitTestSHIM.TestCase): config = read_file(PROXY_CONF) self.assertIn(f'http_port {listen_ip}:3128 intercept', config) - self.assertIn(f'redirect_program /usr/bin/squidGuard -c /etc/squidguard/squidGuard.conf', config) - self.assertIn(f'redirect_children 8', config) + self.assertIn(f'url_rewrite_program /usr/bin/squidGuard -c /etc/squidguard/squidGuard.conf', config) + self.assertIn(f'url_rewrite_children 8', config) # Check SquidGuard config sg_config = read_file('/etc/squidguard/squidGuard.conf') |