Skip to content

Commit

Permalink
Add better debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Dec 18, 2024
1 parent dfa3711 commit ae16651
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,9 @@ def test_file_win(self) -> None:
]:
c, path = get_transport_and_path(file_url)
self.assertIsInstance(c, LocalGitClient)
self.assertEqual(path, expected)
self.assertEqual(
path, expected, f"Failed for {file_url}: {path} != {expected}"
)

for remote_url in [
"file://host.example.com/C:/foo.bar/baz"
Expand Down

0 comments on commit ae16651

Please sign in to comment.