~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/tests/test_specificationtarget.py

[r=bac][bug=799847] Relands form-macro cleanup,
        while fixing previous bad conflict resolution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
        self.assertIsNot(
300
300
            None, content.find(True, id=target_widget.show_widget_id))
301
301
        text = str(content)
302
 
        picker_script = (
303
 
            "Y.lp.app.picker.create('DistributionOrProductOrProjectGroup'")
304
 
        self.assertIn(picker_script, text)
 
302
        picker_vocab = 'DistributionOrProductOrProjectGroup'
 
303
        self.assertIn(picker_vocab, text)
305
304
        focus_script = "setFocusByName('field.search_text')"
306
305
        self.assertIn(focus_script, text)