From b87703eb39e4ad89ef8f8447440d890d555678f6 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 3 Mar 2019 10:50:49 -0500 Subject: [PATCH] Tests: REmoved check for absence of a segfault - Testing for the absence of a segfault is not a good test. --- test/project.t | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/test/project.t b/test/project.t index 4ce43e6e7..0254e0713 100755 --- a/test/project.t +++ b/test/project.t @@ -251,22 +251,6 @@ class TestBug299(TestCase): self.assertRegexpMatches(out, "three.*baz") -class TestBug555(TestCase): - def setUp(self): - self.t = Task() - - def test_log_with_project_segfault(self): - """555: log with a project causes a segfault - - Reported in bug 555 - """ - code, out, err = self.t("log description project:p") - - self.assertNotIn("Segmentation fault", out) - self.assertNotIn("Segmentation fault", err) - self.assertIn("Logged task", out) - - class TestBug605(TestCase): def setUp(self): self.t = Task()