~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/tests/test_questiontarget.py

[r=stevenk][rollback=13696] Remove some tests which should have been
 deleted in the previous rollback

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
        self.assertTrue(
37
37
            self.project.canUserAlterAnswerContact(self.user, self.user))
38
38
 
39
 
    def test_canUserAlterAnswerContact_owner(self):
40
 
        login_person(self.user)
41
 
        self.assertTrue(
42
 
            self.project.canUserAlterAnswerContact(
43
 
                self.user, self.project.owner))
44
 
 
45
39
    def test_canUserAlterAnswerContact_other_user(self):
46
40
        login_person(self.user)
47
41
        other_user = self.factory.makePerson()