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")