From d0c5ee2f85b2cc81a5d60c370776994e1ac1a948 Mon Sep 17 00:00:00 2001 From: Milly Date: Sat, 6 Feb 2021 11:09:35 +0900 Subject: [PATCH] Fix test to windows path matching --- jsonschema/tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonschema/tests/test_cli.py b/jsonschema/tests/test_cli.py index 22528feb5..884a037ab 100644 --- a/jsonschema/tests/test_cli.py +++ b/jsonschema/tests/test_cli.py @@ -747,7 +747,7 @@ def test_nonexistent_file_with_explicit_base_uri(self): ], ) error = str(e.exception) - self.assertIn("/someNonexistentFile.json'", error) + self.assertIn(f"{os.sep}someNonexistentFile.json'", error) def test_invalid_exlicit_base_uri(self): schema = '{"$ref": "foo.json#definitions/num"}'