[Pkg-bazaar-commits] ./bzr/unstable r152: order in which unknowns are reported has changed

mbp at sourcefrog.net mbp at sourcefrog.net
Fri Apr 10 07:50:56 UTC 2009


------------------------------------------------------------
revno: 152
committer: mbp at sourcefrog.net
timestamp: Thu 2005-03-31 10:01:08 +1000
message:
  order in which unknowns are reported has changed
modified:
  bzrlib/tests.py
-------------- next part --------------
=== modified file 'bzrlib/tests.py'
--- a/bzrlib/tests.py	2005-03-26 13:41:53 +0000
+++ b/bzrlib/tests.py	2005-03-31 00:01:08 +0000
@@ -162,7 +162,7 @@
     >>> [v[0] for v in b.inventory.directories()]
     ['', 'd1']
     >>> list(b.working_tree().unknowns())
-    ['d1/f1', 'd2']
+    ['d2', 'd1/f1']
     >>> # d2 comes first because it's in the top directory
 
     >>> b.add('d2')
@@ -184,7 +184,7 @@
     ['configure', 'configure.in', 'doc', 'foo', 'foo.c', 'src']
     >>> b.add(['doc', 'foo.c', 'src', 'configure.in'])
     >>> list(b.unknowns())
-    ['configure', 'doc/configure', 'foo']
+    ['configure', 'foo', 'doc/configure']
     >>> f = file(b.abspath('.bzrignore'), 'w')
     >>> f.write('./configure\n'
     ...         './foo\n')



More information about the Pkg-bazaar-commits mailing list