This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.0.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit 27d5ecd1ded6c365498ad97012dee26cf778b010 Author: Damian Meden <[email protected]> AuthorDate: Mon Jul 1 18:26:52 2024 +0200 records.yaml - Some more cleanup from the records.yaml root key rename. (#11494) (cherry picked from commit 818d50cb4a48a70dc2e98321d54d38e685d6ca04) --- tests/gold_tests/timeout/quic_poll_timeout.test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/gold_tests/timeout/quic_poll_timeout.test.py b/tests/gold_tests/timeout/quic_poll_timeout.test.py index 6b24c3c472..79386d30df 100644 --- a/tests/gold_tests/timeout/quic_poll_timeout.test.py +++ b/tests/gold_tests/timeout/quic_poll_timeout.test.py @@ -16,7 +16,7 @@ from typing import Optional -Test.Summary = 'Checks ts.proxy.config.udp.poll_timeout' +Test.Summary = 'Checks records.proxy.config.udp.poll_timeout' Test.SkipUnless(Condition.HasATSFeature('TS_HAS_QUICHE')) @@ -61,7 +61,7 @@ class TestPollTimeout: tr = Test.AddTestRun(self.name) self._configure_traffic_server(tr) - tr.Processes.Default.Command = "echo 'testing ts.proxy.config.udp.poll_timeout'" + tr.Processes.Default.Command = "echo 'testing records.proxy.config.udp.poll_timeout'" tr.Processes.Default.StartBefore(self._ts) self._ts.Disk.traffic_out.Content += Testers.IncludesExpression( @@ -70,8 +70,8 @@ class TestPollTimeout: # Tests start. -test0 = TestPollTimeout("Test ts.proxy.config.udp.poll_timeout with default value.") +test0 = TestPollTimeout("Test records.proxy.config.udp.poll_timeout with default value.") test0.run() -test1 = TestPollTimeout("Test ts.proxy.config.udp.poll_timeout with value of 10.", udp_poll_timeout_in=10) +test1 = TestPollTimeout("Test records.proxy.config.udp.poll_timeout with value of 10.", udp_poll_timeout_in=10) test1.run()
