mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
more win tests 2
This commit is contained in:
parent
5801230b11
commit
65440f9339
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def test_repath_backslash():
|
|||
exp = os.listdir(home)
|
||||
exp = {p for p in exp if re.match(r'\w\w.*', p)}
|
||||
exp = {os.path.join(home, p) for p in exp}
|
||||
obs = set(regexpath(r'~\\\w\w.*'))
|
||||
obs = set(regexpath(r'~\\\\\w\w.*'))
|
||||
print("expected\n", exp)
|
||||
print("\n=======\nobs\n", obs)
|
||||
assert_equal(exp, obs)
|
||||
|
|
Loading…
Add table
Reference in a new issue