Fix syntax warnings in tests introduced in bpo-35942. (GH-11934)

(cherry picked from commit 8d01eb49fc)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-02-19 04:16:36 -08:00 committed by GitHub
parent 35de9bbbab
commit a8834905df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3311,20 +3311,12 @@ def test_path_t_converter(self):
fn(fd, *extra_args)
def test_path_t_converter_and_custom_class(self):
with self.assertRaisesRegex(
TypeError,
'__fspath__\(\) to return str or bytes, not int'
):
msg = r'__fspath__\(\) to return str or bytes, not %s'
with self.assertRaisesRegex(TypeError, msg % r'int'):
os.stat(FakePath(2))
with self.assertRaisesRegex(
TypeError,
'__fspath__\(\) to return str or bytes, not float'
):
with self.assertRaisesRegex(TypeError, msg % r'float'):
os.stat(FakePath(2.34))
with self.assertRaisesRegex(
TypeError,
'__fspath__\(\) to return str or bytes, not object'
):
with self.assertRaisesRegex(TypeError, msg % r'object'):
os.stat(FakePath(object()))