~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/browser/tests/test_bugtask.py

[rs=buildbot-poller] automatic merge from stable. Revisions: 14451,
        14452, 14453, 14454, 14455 included.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2241
2241
        """Showing last_updated shows the text."""
2242
2242
        navigator, mustache_model = self.getNavigator()
2243
2243
        self.assertIn('show_last_updated', navigator.field_visibility)
2244
 
        self.assertNotIn('last updated updated1', navigator.mustache)
 
2244
        self.assertNotIn('Last updated updated1', navigator.mustache)
2245
2245
        mustache_model['bugtasks'][0]['show_last_updated'] = True
2246
 
        self.assertIn('last updated updated1', navigator.mustache)
 
2246
        self.assertIn('Last updated updated1', navigator.mustache)
2247
2247
 
2248
2248
 
2249
2249
class TestBugListingBatchNavigator(TestCaseWithFactory):