sapling/eden/scm/tests/test-log-unicode.t
Jun Wu beca0cbd81 tests: add devel.segmented-changelog-rev-compat=true for some tests
Summary: This makes them more compatible with the next change.

Reviewed By: LynBusch

Differential Revision: D38913572

fbshipit-source-id: a5a6925dc514db8ba404da99f86dc94809d4df68
2022-09-12 11:49:55 -07:00

29 lines
666 B
Raku
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#chg-compatible
#debugruntest-compatible
$ setconfig devel.segmented-changelog-rev-compat=true
$ hg init a
$ cd a
$ echo AA > A
$ hg commit -qAm "unicode quote: "
$ hg log -Tjson --debug
[
{
"rev": 0,
"node": "86378053da0a233e560e42ef149017c0ae7a7e4f",
"branch": "default",
"phase": "draft",
"user": "test",
"date": [0, 0],
"desc": "unicode quote: \xe2\x80\x99", (esc) (?)
"desc": "unicode quote: \u2019", (?)
"bookmarks": [],
"parents": [],
"manifest": "e014a281af7c5932257f42933049e389b86dc42e",
"extra": {"branch": "default"},
"modified": [],
"added": ["A"],
"removed": []
}
]