more win tests 2

This commit is contained in:
Anthony Scopatz 2015-08-02 13:22:12 -05:00
parent 5801230b11
commit 65440f9339

View file

@ -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)