~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/tests/test_bugchanges.py

[r=wallyworld][bug=906536] Remove the bugtask deletion feature flag -
 the feature is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from lp.bugs.interfaces.cve import ICveSet
26
26
from lp.bugs.model.bugnotification import BugNotification
27
27
from lp.bugs.scripts.bugnotification import construct_email_notifications
28
 
from lp.services.features.testing import FeatureFixture
29
28
from lp.testing import (
30
29
    celebrity_logged_in,
31
30
    login_person,
1414
1413
        self.saveOldChanges()
1415
1414
 
1416
1415
        login_person(self.user)
1417
 
        flags = {u"disclosure.delete_bugtask.enabled": u"on"}
1418
 
        with FeatureFixture(flags):
1419
 
            task_to_delete.delete()
 
1416
        task_to_delete.delete()
1420
1417
 
1421
1418
        task_deleted_activity = {
1422
1419
            'person': self.user,