From 467ab4e029554a4e855e60e31349445ff32888eb Mon Sep 17 00:00:00 2001 From: Abhishek's Macbook Pro Date: Sun, 12 May 2024 05:08:03 +0530 Subject: [PATCH] updated tests --- tests/src/commands/test_annotate_and_test_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/commands/test_annotate_and_test_runner.py b/tests/src/commands/test_annotate_and_test_runner.py index d367260..ff5bbad 100644 --- a/tests/src/commands/test_annotate_and_test_runner.py +++ b/tests/src/commands/test_annotate_and_test_runner.py @@ -139,7 +139,7 @@ class TestSymbol: output_text = output_panel_view.substr( sublime.Region(0, output_panel_view.size()) ) - self.assertTrue(test_command in output_text) + self.assertEqual(test_command, output_text) @patch("os.path.exists") @patch("sublime.platform")