From 3e4250b2f730f93179bf017e759053c2c845da5f Mon Sep 17 00:00:00 2001 From: Steve Yoo Date: Thu, 21 May 2026 15:35:06 -0400 Subject: [PATCH] Update EC2 doc assertion --- tests/functional/autoprompt/test_doc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/autoprompt/test_doc.py b/tests/functional/autoprompt/test_doc.py index 656910a25cf0..15e2ab649e7f 100644 --- a/tests/functional/autoprompt/test_doc.py +++ b/tests/functional/autoprompt/test_doc.py @@ -55,7 +55,7 @@ def setUp(self): def test_get_service_command_docs(self): parsed_args = self.parser.parse('aws ec2') actual_docs = self.docs_getter.get_docs(parsed_args) - expected_docs = 'Elastic Compute Cloud' + expected_docs = 'Amazon EC2' self.assertIn(expected_docs, actual_docs) def test_get_service_operation_docs(self): @@ -67,7 +67,7 @@ def test_get_service_operation_docs(self): def test_get_service_command_docs_with_invalid_service_operation(self): parsed_args = self.parser.parse('aws ec2 fake') actual_docs = self.docs_getter.get_docs(parsed_args) - expected_docs = 'Elastic Compute Cloud' + expected_docs = 'Amazon EC2' self.assertIn(expected_docs, actual_docs) def test_get_top_level_aws_docs_if_no_command_specified(self):