/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_export.py

  • Committer: Martin Pool
  • Date: 2010-04-28 07:03:38 UTC
  • mfrom: (5188 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5189.
  • Revision ID: mbp@sourcefrog.net-20100428070338-2af8y3takgfkrkyp
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
307
307
        tree = self.example_branch()
308
308
        self.build_tree_contents([('branch/har', 'foo')])
309
309
        tree.add('har')
310
 
        tree.commit('setup', timestamp=42)
 
310
        # Earliest allowable date on FAT32 filesystems is 1980-01-01
 
311
        tree.commit('setup', timestamp=315532800)
311
312
        self.run_bzr('export --per-file-timestamps t branch')
312
313
        har_st = os.stat('t/har')
313
 
        self.assertEquals(42, har_st.st_mtime)
 
314
        self.assertEquals(315532800, har_st.st_mtime)
314
315