diff tests/test-revlog.t @ 46704:913485776542

revlog: introduce v2 format As documented in [1], this is still tentative and could be subject to change, but we need to lay down the foundations in order to work on the next abstraction layers. [1] https://www.mercurial-scm.org/wiki/RevlogV2Plan Differential Revision: https://phab.mercurial-scm.org/D9843
author Raphaël Gomès <rgomes@octobus.net>
date Thu, 28 Jan 2021 15:28:57 +0100
parents 17a695357270
children 4c041c71ec01
line wrap: on
line diff
--- a/tests/test-revlog.t	Fri Feb 12 16:13:34 2021 -0800
+++ b/tests/test-revlog.t	Thu Jan 28 15:28:57 2021 +0100
@@ -22,10 +22,10 @@
 Unknown version is rejected
 
   >>> with open('.hg/store/00changelog.i', 'wb') as fh:
-  ...     fh.write(b'\x00\x00\x00\x02') and None
+  ...     fh.write(b'\x00\x00\xbe\xef') and None
 
   $ hg log
-  abort: unknown version (2) in revlog 00changelog.i
+  abort: unknown version (48879) in revlog 00changelog.i
   [50]
 
   $ cd ..