test: use native path in docs parity assertion (#3043)

This commit is contained in:
akbash
2026-08-20 18:48:59 +03:00
committed by GitHub
parent ace910501c
commit 2c042bb2ce
+1 -1
View File
@@ -56,7 +56,7 @@ class DocsTranslationParityTests(unittest.TestCase):
errors = check_docs_translation_parity(root)
self.assertEqual(len(errors), 1)
self.assertIn("ja/cli-reference.mdx", errors[0])
self.assertIn(str(Path("ja") / "cli-reference.mdx"), errors[0])
self.assertIn("heading outline differs", errors[0])
def test_parity_reports_missing_and_stale_files(self) -> None: