From 0297f8312c5cd80cf5d2ffc3f0915b00647b03e5 Mon Sep 17 00:00:00 2001 From: Daniel Kutik Date: Sun, 27 Nov 2022 13:26:15 +0100 Subject: test: fix path seperator errors on windows Fixing multiple errors when running tests on Windows related to path seperator being different ('\' instead of '/'). Signed-off-by: Daniel Kutik Change-Id: I26b44d092b925edecab46a4d88e77dd9dcb8df28 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/353178 Reviewed-by: Mike Frysinger --- tests/test_manifest_xml.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'tests/test_manifest_xml.py') diff --git a/tests/test_manifest_xml.py b/tests/test_manifest_xml.py index f92108e1..0e649a67 100644 --- a/tests/test_manifest_xml.py +++ b/tests/test_manifest_xml.py @@ -519,22 +519,22 @@ class ProjectElementTests(ManifestParseTestCase): """) manifest = parse('a/path/', 'foo') - self.assertEqual(manifest.projects[0].gitdir, - os.path.join(self.tempdir, '.repo/projects/foo.git')) - self.assertEqual(manifest.projects[0].objdir, - os.path.join(self.tempdir, '.repo/project-objects/a/path.git')) + self.assertEqual(os.path.normpath(manifest.projects[0].gitdir), + os.path.join(self.tempdir, '.repo', 'projects', 'foo.git')) + self.assertEqual(os.path.normpath(manifest.projects[0].objdir), + os.path.join(self.tempdir, '.repo', 'project-objects', 'a', 'path.git')) manifest = parse('a/path', 'foo/') - self.assertEqual(manifest.projects[0].gitdir, - os.path.join(self.tempdir, '.repo/projects/foo.git')) - self.assertEqual(manifest.projects[0].objdir, - os.path.join(self.tempdir, '.repo/project-objects/a/path.git')) + self.assertEqual(os.path.normpath(manifest.projects[0].gitdir), + os.path.join(self.tempdir, '.repo', 'projects', 'foo.git')) + self.assertEqual(os.path.normpath(manifest.projects[0].objdir), + os.path.join(self.tempdir, '.repo', 'project-objects', 'a', 'path.git')) manifest = parse('a/path', 'foo//////') - self.assertEqual(manifest.projects[0].gitdir, - os.path.join(self.tempdir, '.repo/projects/foo.git')) - self.assertEqual(manifest.projects[0].objdir, - os.path.join(self.tempdir, '.repo/project-objects/a/path.git')) + self.assertEqual(os.path.normpath(manifest.projects[0].gitdir), + os.path.join(self.tempdir, '.repo', 'projects', 'foo.git')) + self.assertEqual(os.path.normpath(manifest.projects[0].objdir), + os.path.join(self.tempdir, '.repo', 'project-objects', 'a', 'path.git')) def test_toplevel_path(self): """Check handling of path=. specially.""" @@ -551,8 +551,8 @@ class ProjectElementTests(ManifestParseTestCase): for path in ('.', './', './/', './//'): manifest = parse('server/path', path) - self.assertEqual(manifest.projects[0].gitdir, - os.path.join(self.tempdir, '.repo/projects/..git')) + self.assertEqual(os.path.normpath(manifest.projects[0].gitdir), + os.path.join(self.tempdir, '.repo', 'projects', '..git')) def test_bad_path_name_checks(self): """Check handling of bad path & name attributes.""" -- cgit v1.2.3-54-g00ecf