From 86bf22da6e62070ef4fc77f3c0fb7081392ca25e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=84=9C=ED=9D=AC?= <47496422+LireEruel@users.noreply.github.com> Date: Fri, 16 May 2025 18:01:20 +0900 Subject: [PATCH] fix: correct typo in test failure message Fixed a typo in the assertion message of test_4 in end_to_end_test_run.py. "doesn'tmatch" was changed to "doesn't match" for proper spacing and readability. --- test/end_to_end_test_run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/end_to_end_test_run.py b/test/end_to_end_test_run.py index c23e894..729e9a2 100644 --- a/test/end_to_end_test_run.py +++ b/test/end_to_end_test_run.py @@ -244,10 +244,10 @@ def test_4(self): assert metric_descriptors_cnt == bq_metrics_cnt, \ "Failed #4: The # of metric descriptors written from list_metrics "\ - "doesn'tmatch the # of records received from the Monitoring API call "\ + "doesn't match the # of records received from the Monitoring API call "\ "bq_metrics_cnt: {}, metric_descriptors_cnt: {}"\ .format(bq_metrics_cnt, metric_descriptors_cnt) if __name__ == '__main__': logging.getLogger('googleapiclient.discovery_cache').setLevel(logging.ERROR) - unittest.main() \ No newline at end of file + unittest.main()